diff --git a/core/src/mindustry/content/Blocks.java b/core/src/mindustry/content/Blocks.java index 8f66b936ac..f9c48edcf0 100644 --- a/core/src/mindustry/content/Blocks.java +++ b/core/src/mindustry/content/Blocks.java @@ -1662,6 +1662,7 @@ public class Blocks implements ContentList{ shootEffect = Fx.shootLiquid; range = 190f; health = 250 * size * size; + flags = EnumSet.of(BlockFlag.turret, BlockFlag.extinguisher); }}; fuse = new ItemTurret("fuse"){{ diff --git a/core/src/mindustry/world/blocks/power/SolarGenerator.java b/core/src/mindustry/world/blocks/power/SolarGenerator.java index d5f37329ae..84e0b0ba81 100644 --- a/core/src/mindustry/world/blocks/power/SolarGenerator.java +++ b/core/src/mindustry/world/blocks/power/SolarGenerator.java @@ -10,7 +10,7 @@ public class SolarGenerator extends PowerGenerator{ public SolarGenerator(String name){ super(name); - //remove the BlockFlag.producer flag to make this a lower priority target than other generators. + //remove the BlockFlag.generator flag to make this a lower priority target than other generators. flags = EnumSet.of(); }