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) {
|
||||
region.regionData.add("prototype", region.getPrototype().getName());
|
||||
if (region.getPrototype() != null) {
|
||||
region.regionData.add("prototype", region.getPrototype().getName());
|
||||
}
|
||||
region.regionData.add("flagStorage", FlagStorage.toYAPION(region.getFlagStorage()));
|
||||
RegionLoader.save();
|
||||
}
|
||||
|
In neuem Issue referenzieren
Einen Benutzer sperren