SteamWar/BauSystem2.0
Archiviert
12
0

Add Region.reset debug messages

Dieser Commit ist enthalten in:
yoyosource 2021-04-20 11:01:19 +02:00
Ursprung 73aa65c01a
Commit ba3ee30385

Datei anzeigen

@ -336,15 +336,18 @@ public class Region {
} }
switch (regionType) { switch (regionType) {
case BUILD: case BUILD:
System.out.println(schematic + " " + regionType + " " + regionExtensionType + " " + minPointBuild);
break;
case TESTBLOCK: case TESTBLOCK:
System.out.println(schematic + " " + regionType + " " + regionExtensionType + " " + minPointTestblock);
break;
default: default:
case NORMAL: case NORMAL:
System.out.println(schematic + " " + regionType + " " + regionExtensionType + " " + minPoint);
break;
} }
} }
public boolean isGlobal() { public boolean isGlobal() {
return this == GlobalRegion.getInstance(); return this == GlobalRegion.getInstance();
} }