This commit is contained in:
Anuken
2025-02-08 19:33:23 -05:00
parent ebaf88e80d
commit b96191f6d6
6 changed files with 18 additions and 4 deletions

View File

@@ -124,6 +124,8 @@ public class Block extends UnlockableContent implements Senseable{
public boolean saveData;
/** whether you can break this with rightclick */
public boolean breakable;
/** if true, this block will be broken by certain units stepping/moving over it */
public boolean unitMoveBreakable;
/** whether to add this block to brokenblocks */
public boolean rebuildable = true;
/** if true, this logic-related block can only be used with privileged processors (or is one itself) */

View File

@@ -16,6 +16,7 @@ public class Prop extends Block{
breakable = true;
alwaysReplace = true;
instantDeconstruct = true;
unitMoveBreakable = true;
breakEffect = Fx.breakProp;
breakSound = Sounds.rockBreak;
}