Hotfix Persistent

This commit is contained in:
2025-06-11 08:09:31 +02:00
parent 26b126fdba
commit 909c1c52aa
@@ -223,10 +223,10 @@ public class Persistent {
public int queueRestart(CommandContext<CommandSource> context) {
if (restartQueued) {
restartQueued = false;
context.getSource().sendRichMessage("§eRestart dequeued§8.");
context.getSource().sendPlainMessage("§eRestart dequeued§8.");
} else {
restartQueued = true;
context.getSource().sendRichMessage("§eRestart queued§8.");
context.getSource().sendPlainMessage("§eRestart queued§8.");
}
return Command.SINGLE_SUCCESS;
}