SteamWar/BauSystem2.0
Archiviert
12
0

Fix Region.hasType

Dieser Commit ist enthalten in:
yoyosource 2021-04-20 11:11:02 +02:00
Ursprung 25111c62be
Commit 89d1289f64

Datei anzeigen

@ -208,7 +208,7 @@ public class Region {
return prototype != null && prototype.getTestblock() != null; return prototype != null && prototype.getTestblock() != null;
default: default:
case NORMAL: case NORMAL:
return true; return prototype != null;
} }
} }