SteamWar/BauSystem2.0
Archiviert
12
0

Fix RegionUtils.save NPE

Dieser Commit ist enthalten in:
yoyosource 2021-04-22 19:44:32 +02:00
Ursprung 3cbd7e7996
Commit be58a1c0f3

Datei anzeigen

@ -29,7 +29,9 @@ public class RegionUtils {
} }
static void save(Region region) { static void save(Region region) {
if (region.getPrototype() != null) {
region.regionData.add("prototype", region.getPrototype().getName()); region.regionData.add("prototype", region.getPrototype().getName());
}
region.regionData.add("flagStorage", FlagStorage.toYAPION(region.getFlagStorage())); region.regionData.add("flagStorage", FlagStorage.toYAPION(region.getFlagStorage()));
RegionLoader.save(); RegionLoader.save();
} }