mirror of
https://github.com/IntellectualSites/PlotSquared.git
synced 2024-11-25 12:25:46 +01:00
Fixed invalid flags in plot info
This commit is contained in:
parent
393603e786
commit
eb2c901d73
@ -205,10 +205,6 @@ public class FlagManager {
|
||||
if (!result) {
|
||||
return false;
|
||||
}
|
||||
final Flag hasFlag = getPlotFlag(plot, flag.getKey());
|
||||
if (hasFlag != null) {
|
||||
plot.settings.flags.remove(hasFlag);
|
||||
}
|
||||
plot.settings.flags.put(flag.getKey(), flag);
|
||||
DBFunc.setFlags(plot.world, plot, plot.settings.flags.values());
|
||||
return true;
|
||||
@ -247,7 +243,7 @@ public class FlagManager {
|
||||
map = new HashMap<>();
|
||||
}
|
||||
else {
|
||||
map = plotworld.DEFAULT_FLAGS;
|
||||
map = (HashMap<String, Flag>) plotworld.DEFAULT_FLAGS.clone();
|
||||
}
|
||||
map.putAll(settings.flags);
|
||||
return map.values();
|
||||
|
Loading…
Reference in New Issue
Block a user