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.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()) if (TELEPORT_ON_JOIN.contains(player.getName()) || ConfigEntry.AUTO_TP.getBoolean())
{ {

View File

@ -215,11 +215,6 @@ public class Command_saconfig extends FreedomCommand
msg(player, "You have been unfrozen."); msg(player, "You have been unfrozen.");
} }
if (!player.isOp())
{
player.setOp(true);
msg(player, YOU_ARE_OP);
}
return true; return true;
} }