From e45698c88ac02438e94b5b87753ca8f6981d4a71 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Elias=20M=C3=BCller?= Date: Fri, 20 Dec 2024 18:46:20 +0100 Subject: [PATCH] fix swapped command feedback --- .../spawn/appliances/endPrevent/EndPreventCommand.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/java/eu/mhsl/craftattack/spawn/appliances/endPrevent/EndPreventCommand.java b/src/main/java/eu/mhsl/craftattack/spawn/appliances/endPrevent/EndPreventCommand.java index d07439e..1c89f21 100644 --- a/src/main/java/eu/mhsl/craftattack/spawn/appliances/endPrevent/EndPreventCommand.java +++ b/src/main/java/eu/mhsl/craftattack/spawn/appliances/endPrevent/EndPreventCommand.java @@ -25,7 +25,7 @@ public class EndPreventCommand extends ApplianceCommand { sender.sendMessage(Component.text("Setting updated!", NamedTextColor.GREEN)); } sender.sendMessage(Component.text( - String.format("The End is %s!", this.getAppliance().isEndDisabled() ? "open" : "closed"), + String.format("The End is %s!", this.getAppliance().isEndDisabled() ? "closed" : "open"), NamedTextColor.GOLD )); }