Fixed issue with default flags not being parsed when added

This commit is contained in:
boy0001 2015-03-10 21:21:38 +11:00
parent 61ebd2a144
commit 073b0b612c
2 changed files with 11 additions and 1 deletions

View file

@ -936,4 +936,8 @@ public class PlotSquared {
public static Set<String> getPlotWorlds() {
return plotworlds.keySet();
}
public static Collection<PlotWorld> getPlotWorldObjects() {
return plotworlds.values();
}
}