diff --git a/plugins/exilepearl-paper/src/main/java/com/devotedmc/ExilePearl/command/CmdShowAllPearls.java b/plugins/exilepearl-paper/src/main/java/com/devotedmc/ExilePearl/command/CmdShowAllPearls.java index 1b9fb7eb2..a3313126d 100644 --- a/plugins/exilepearl-paper/src/main/java/com/devotedmc/ExilePearl/command/CmdShowAllPearls.java +++ b/plugins/exilepearl-paper/src/main/java/com/devotedmc/ExilePearl/command/CmdShowAllPearls.java @@ -226,7 +226,7 @@ public class CmdShowAllPearls extends PearlCommand { Component.text() .decoration(TextDecoration.ITALIC, false) .color(NamedTextColor.AQUA) - .content("Currently turned " + (!bannedPearlToggle ? "on" : "off")) + .content("Currently turned " + (bannedPearlToggle ? "on" : "off")) .build()); return true; }); @@ -241,7 +241,7 @@ public class CmdShowAllPearls extends PearlCommand { } clicker.sendMessage(Component.text() .color(NamedTextColor.GREEN) - .content("Banned pearls toggled " + (bannedPearlToggle ? "on" : "off")) + .content("Banned pearls toggled " + (!bannedPearlToggle ? "on" : "off")) .build()); generateOpenPearlsMenu(clicker); }