SteamWar/BauSystem2.0
Archiviert
12
0

Simplify Region.hasExtensionType

Dieser Commit ist enthalten in:
yoyosource 2021-04-20 11:18:57 +02:00
Ursprung a56b399611
Commit e661d2657e

Datei anzeigen

@ -216,11 +216,14 @@ public class Region {
}
public boolean hasExtensionType(RegionType regionType) {
if (!hasType(regionType)) {
return false;
}
switch (regionType) {
case BUILD:
return prototype != null && prototype.getBuild() != null && prototype.getBuild().isExtensionRegistered();
return prototype.getBuild().isExtensionRegistered();
case TESTBLOCK:
return prototype != null && prototype.getTestblock() != null && prototype.getTestblock().isExtensionRegistered();
return prototype.getTestblock().isExtensionRegistered();
default:
case NORMAL:
return false;