From 706c6ae1c24fa53470c0ca08b31898faf9710433 Mon Sep 17 00:00:00 2001 From: ginlang Date: Mon, 28 Mar 2022 20:20:43 +0100 Subject: [PATCH] saconfig add to be used ingame just so if someone is not on a supered ip super admins can also add them (its more convenient too) also made saconfig remove set to both but changed requirements to senior (because some NERDS at totalfreedom incorporated did not make adminLevel.TELNET a thing) --- .../TotalFreedomMod/commands/Command_saconfig.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/main/java/me/StevenLawson/TotalFreedomMod/commands/Command_saconfig.java b/src/main/java/me/StevenLawson/TotalFreedomMod/commands/Command_saconfig.java index 21d55cc..4f551a9 100644 --- a/src/main/java/me/StevenLawson/TotalFreedomMod/commands/Command_saconfig.java +++ b/src/main/java/me/StevenLawson/TotalFreedomMod/commands/Command_saconfig.java @@ -192,8 +192,8 @@ public class Command_saconfig extends FreedomCommand { CLEAN("clean", AdminLevel.SENIOR, SourceType.BOTH, 1, 1), CLEARME("clearme", AdminLevel.SUPER, SourceType.ONLY_IN_GAME, 1, 2), INFO("info", AdminLevel.SUPER, SourceType.BOTH, 2, 2), - ADD("add", AdminLevel.SUPER, SourceType.ONLY_CONSOLE, 2, 2), - REMOVE("remove", AdminLevel.SUPER, SourceType.ONLY_CONSOLE, 2, 2); + ADD("add", AdminLevel.SUPER, SourceType.BOTH, 2, 2), + REMOVE("remove", AdminLevel.SENIOR, SourceType.BOTH, 2, 2); private final String modeName; private final AdminLevel adminLevel; private final SourceType sourceType;