This commit is contained in:
Anuken
2024-02-13 21:22:07 -05:00
parent 00ecf37276
commit 1ab8b50977
3 changed files with 16 additions and 2 deletions

View File

@@ -219,6 +219,8 @@ public class Block extends UnlockableContent implements Senseable{
public int unitCapModifier = 0;
/** Whether the block can be tapped and selected to configure. */
public boolean configurable;
/** If true, this block does not have pointConfig with a transform called on map resize. */
public boolean ignoreResizeConfig;
/** If true, this building can be selected like a unit when commanding. */
public boolean commandable;
/** If true, the building inventory can be shown with the config. */

View File

@@ -45,6 +45,7 @@ public class LogicBlock extends Block{
configurable = true;
group = BlockGroup.logic;
schematicPriority = 5;
ignoreResizeConfig = true;
//universal, no real requirements
envEnabled = Env.any;