SteamWar/BauSystem
Archiviert
13
0

Add rotate of schematic if pasted as testblock, when check type or fight type #242

Manuell gemergt
YoyoNow hat 2 Commits von SchemRotatability nach master 2021-04-09 17:50:08 +02:00 zusammengeführt

Datei anzeigen

@ -151,6 +151,9 @@ public class Prototype {
if (schem == null) {
return paste(new File(schematic), x, y, z, rotate, ignoreAir, color);
} else {
if (schem.getSchemType().fightType() || schem.getSchemType().check()) {
return paste(schem.load(), x, y, z, !rotate, ignoreAir, color);
}
return paste(schem.load(), x, y, z, rotate, ignoreAir, color);
}
}