From 993f3973d25efe92b1e6572f579319271b98e5c7 Mon Sep 17 00:00:00 2001 From: Lucky Clover <55009845+Jackson11500@users.noreply.github.com> Date: Thu, 3 Nov 2022 11:52:23 +0800 Subject: [PATCH] worldMessage.targetable=false (#7802) turret would try to attack worldMessage but cant hit it so why not combine privileged with targetable( --- core/src/mindustry/content/Blocks.java | 2 ++ 1 file changed, 2 insertions(+) diff --git a/core/src/mindustry/content/Blocks.java b/core/src/mindustry/content/Blocks.java index b6456795cb..8037989ebc 100644 --- a/core/src/mindustry/content/Blocks.java +++ b/core/src/mindustry/content/Blocks.java @@ -5861,6 +5861,8 @@ public class Blocks{ worldMessage = new MessageBlock("world-message"){{ requirements(Category.logic, BuildVisibility.editorOnly, with()); + + targetable = false; privileged = true; }};