[#876] Corrected /planbungee setup message

This commit is contained in:
Rsl1122 2019-01-10 13:14:00 +02:00
parent 7a47da4319
commit 76068ea6f8

View File

@ -59,7 +59,7 @@ public class BungeeSetupToggleCommand extends CommandNode {
connectionSystem.setSetupAllowed(true);
}
String msg = locale.getString(connectionSystem.isSetupAllowed() ? CommandLang.SETUP_ALLOWED : CommandLang.CONNECT_FORBIDDEN);
String msg = locale.getString(connectionSystem.isSetupAllowed() ? CommandLang.SETUP_ALLOWED : CommandLang.SETUP_FORBIDDEN);
sender.sendMessage(msg);
}
}