Load plots with no settings.

This commit is contained in:
boy0001 2015-09-27 18:37:33 +10:00
parent bb32507841
commit 0273a4614b
2 changed files with 11 additions and 1 deletions

View File

@ -1464,7 +1464,7 @@ public class SQLManager implements AbstractDB {
}
plot.getSettings().ratings.put(user, r.getInt("rating"));
} else {
PS.debug("&cPLOT " + id + " in plot_helpers does not exist. Please create the plot or remove this entry.");
PS.debug("&cPLOT " + id + " in plot_rating does not exist. Please create the plot or remove this entry.");
}
}
}
@ -1617,6 +1617,16 @@ public class SQLManager implements AbstractDB {
}
if (plots.entrySet().size() > 0) {
createEmptySettings(new ArrayList<Integer>(plots.keySet()), null);
for (Entry<Integer, Plot> entry : plots.entrySet()) {
Plot plot = entry.getValue();
plot.getSettings();
ConcurrentHashMap<PlotId, Plot> map = newplots.get(plot.world);
if (map == null) {
map = new ConcurrentHashMap<PlotId, Plot>();
newplots.put(plot.world, map);
}
newplots.get(plot.world).put(plot.id, plot);
}
}
boolean invalidPlot = false;
for (final Entry<String, Integer> entry : noExist.entrySet()) {

Binary file not shown.