From 6969fbb1e7cef6a01ac984c9bba39b280dbcb86a Mon Sep 17 00:00:00 2001 From: Patrick 'Quezler' Mounier Date: Tue, 26 Jan 2021 17:31:36 +0100 Subject: [PATCH 1/2] Give tsunami the extinguisher flag as well (#4442) --- core/src/mindustry/content/Blocks.java | 1 + 1 file changed, 1 insertion(+) 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"){{ From 03b37235b31af69c55fd5c7955bb7250a5a9e8ea Mon Sep 17 00:00:00 2001 From: Patrick 'Quezler' Mounier Date: Tue, 26 Jan 2021 17:35:48 +0100 Subject: [PATCH 2/2] producer -> generator (#4441) --- core/src/mindustry/world/blocks/power/SolarGenerator.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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(); }