fix typo
This commit is contained in:
parent
55e15245e6
commit
62a4da3e66
3 changed files with 2 additions and 3 deletions
|
@ -111,7 +111,6 @@ public class Store {
|
|||
getConfig().addDefault("nametagsVisible", false);
|
||||
getConfig().addDefault("permissionsRequired", true);
|
||||
getConfig().addDefault("lobby.manualJoin", false);
|
||||
getConfig().addDefault("lobby.countdownTime", 60);
|
||||
getConfig().addDefault("lobby.announceJoinAndLeave", false);
|
||||
getConfig().addDefault("lobby.spawn.x", 0);
|
||||
getConfig().addDefault("lobby.spawn.y", 0);
|
||||
|
|
|
@ -13,7 +13,7 @@ public class Join implements ICommand {
|
|||
|
||||
public void execute(CommandSender sender, String[] args) {
|
||||
if(!lobbyManualJoin) {
|
||||
sender.sendMessage(errorPrefix + "Manual join/leave isnt set to manual in this server");
|
||||
sender.sendMessage(errorPrefix + "Manual join/leave isnt enabled in this server");
|
||||
return;
|
||||
}
|
||||
if(!status.equals("Standby")) {
|
||||
|
|
|
@ -12,7 +12,7 @@ public class Leave implements ICommand {
|
|||
|
||||
public void execute(CommandSender sender, String[] args) {
|
||||
if(!lobbyManualJoin) {
|
||||
sender.sendMessage(errorPrefix + "Manual join/leave isnt set to manual in this server");
|
||||
sender.sendMessage(errorPrefix + "Manual join/leave isnt enabled in this server");
|
||||
return;
|
||||
}
|
||||
if(!status.equals("Standby")) {
|
||||
|
|
Loading…
Reference in a new issue