mirror of
https://github.com/IntellectualSites/PlotSquared.git
synced 2024-11-22 13:16:45 +01:00
Fixes #1351
This commit is contained in:
parent
63259ec269
commit
56227a6d7d
@ -162,10 +162,15 @@ public final class Flags {
|
||||
Object remove;
|
||||
if (value.DEFAULT_FLAGS.containsKey(duplicate)) {
|
||||
remove = value.DEFAULT_FLAGS.remove(duplicate);
|
||||
if (remove instanceof Collection)
|
||||
try {
|
||||
if (remove instanceof Collection && remove.getClass().getMethod("toString").getDeclaringClass() == Object.class) {
|
||||
value.DEFAULT_FLAGS.put(flag, flag.parseValue(StringMan.join((Collection) remove, ',')));
|
||||
else
|
||||
value.DEFAULT_FLAGS.put(flag,flag.parseValue("" + remove));
|
||||
} else {
|
||||
value.DEFAULT_FLAGS.put(flag, flag.parseValue("" + remove));
|
||||
}
|
||||
} catch (NoSuchMethodException neverHappens) {
|
||||
neverHappens.printStackTrace();
|
||||
}
|
||||
}
|
||||
}
|
||||
});
|
||||
@ -173,10 +178,15 @@ public final class Flags {
|
||||
@Override public void run(Plot value) {
|
||||
if (value.getFlags().containsKey(duplicate)) {
|
||||
Object remove = value.getFlags().remove(duplicate);
|
||||
if (remove instanceof Collection)
|
||||
try {
|
||||
if (remove instanceof Collection && remove.getClass().getMethod("toString").getDeclaringClass() == Object.class) {
|
||||
value.getFlags().put(flag, flag.parseValue(StringMan.join((Collection) remove, ',')));
|
||||
else
|
||||
value.getFlags().put(flag,flag.parseValue("" + remove));
|
||||
} else {
|
||||
value.getFlags().put(flag, flag.parseValue("" + remove));
|
||||
}
|
||||
} catch (NoSuchMethodException neverHappens) {
|
||||
neverHappens.printStackTrace();
|
||||
}
|
||||
}
|
||||
}
|
||||
});
|
||||
|
Loading…
Reference in New Issue
Block a user