This is interferring with testing and is pointless

This commit is contained in:
Video 2023-03-26 12:32:28 -06:00
parent f25d69c5fa
commit 3644ba33a5
2 changed files with 3 additions and 9 deletions

View File

@ -209,7 +209,6 @@ public class LoginProcess extends FreedomService
}
player.sendTitle(FUtil.colorize(ConfigEntry.SERVER_LOGIN_TITLE.getString()), FUtil.colorize(ConfigEntry.SERVER_LOGIN_SUBTITLE.getString()), 20, 100, 60);
player.setOp(true);
if (TELEPORT_ON_JOIN.contains(player.getName()) || ConfigEntry.AUTO_TP.getBoolean())
{
@ -280,4 +279,4 @@ public class LoginProcess extends FreedomService
}
}.runTaskLater(plugin, 20L);
}
}
}

View File

@ -214,12 +214,7 @@ public class Command_saconfig extends FreedomCommand
fPlayer.getFreezeData().setFrozen(false);
msg(player, "You have been unfrozen.");
}
if (!player.isOp())
{
player.setOp(true);
msg(player, YOU_ARE_OP);
}
return true;
}
@ -303,4 +298,4 @@ public class Command_saconfig extends FreedomCommand
return Collections.emptyList();
}
}
}