Fix RegionUtils.save NPE
Dieser Commit ist enthalten in:
Ursprung
3cbd7e7996
Commit
be58a1c0f3
@ -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();
|
||||||
}
|
}
|
||||||
|
In neuem Issue referenzieren
Einen Benutzer sperren