Map submission for 0 / 218 thorium removed / Fixed turrets rotating in editor

This commit is contained in:
Anuken
2025-09-26 23:59:25 -04:00
parent 02a637b843
commit 840ac5f913
6 changed files with 20 additions and 7 deletions

View File

@@ -112,6 +112,8 @@ public class Block extends UnlockableContent implements Senseable{
public boolean rotate;
/** if rotate is true and this is false, the region won't rotate when drawing */
public boolean rotateDraw = true;
/** if rotate is true and this is false, the region won't rotate when drawing in the editor */
public boolean rotateDrawEditor = true;
/** if rotate = false and this is true, rotation will be locked at 0 when placing (default); advanced use only */
public boolean lockRotation = true;
/** if true, schematic flips with this block are inverted. */

View File

@@ -159,6 +159,7 @@ public class Turret extends ReloadTurret{
rotate = true;
quickRotate = false;
drawArrow = false;
rotateDrawEditor = false;
}
@Override