mirror of
https://github.com/IntellectualSites/PlotSquared.git
synced 2025-07-01 13:14:43 +02:00
Sponge fixes
This commit is contained in:
@ -50,7 +50,7 @@ public class StringMan {
|
||||
else if (obj instanceof Collection<?>) {
|
||||
String result = "";
|
||||
String prefix = "";
|
||||
for (Object element : (List<?>) obj) {
|
||||
for (Object element : (Collection<?>) obj) {
|
||||
result += prefix + getString(element);
|
||||
prefix = ",";
|
||||
}
|
||||
|
Reference in New Issue
Block a user