SteamWar/BauSystem
Archiviert
13
0

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

Dieser Commit ist enthalten in:
yoyosource 2021-04-09 16:18:57 +02:00
Ursprung f1e6006c51
Commit 140513fee3

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);
}
}