diff --git a/BauSystem_Main/src/de/steamwar/bausystem/world/regions/Prototype.java b/BauSystem_Main/src/de/steamwar/bausystem/world/regions/Prototype.java index 5866b2e..9d91052 100644 --- a/BauSystem_Main/src/de/steamwar/bausystem/world/regions/Prototype.java +++ b/BauSystem_Main/src/de/steamwar/bausystem/world/regions/Prototype.java @@ -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); } }