Skip to content

Commit

Permalink
Add files via upload
Browse files Browse the repository at this point in the history
  • Loading branch information
ZetaMap committed Aug 22, 2021
1 parent 7179c8a commit 2bbeb41
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/main/java/moreCommandsPlugin.java
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ public class moreCommandsPlugin extends mindustry.mod.Plugin {
votesRTV = new ArrayList<>(),
rainbowedPlayers = new ArrayList<>(),
effects = new ArrayList<>(),
adminCommands = new Seq<String>().addAll("team", "am", "kick", "pardon", "ban", "unban", "players", "kill", "tp", "core", "tchat", "spawn", "godmode", "mute").list(),
adminCommands = new Seq<String>().addAll("team", "am", "kick", "pardon", "ban", "unban", "players", "kill", "tp", "core", "tchat", "spawn", "godmode", "mute", "unmute").list(),
bannedClients = new Seq<String>().addAll("VALVE", "tuttop", "CODEX", "IGGGAMES", "IgruhaOrg", "FreeTP.Org").list(),
defaultBannedNames = new Seq<String>().addAll("[Server]", "[server]", "@a", "@p", "@t", "~").list(),
defaultBannedIps = new ArrayList<>(),
Expand Down
3 changes: 1 addition & 2 deletions src/main/java/util/CommandsManager.java
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@
import arc.struct.ObjectMap;
import arc.struct.Seq;
import arc.util.CommandHandler;
import arc.util.Log;


public class CommandsManager {
Expand Down Expand Up @@ -39,7 +38,7 @@ public static void update(CommandHandler handler) {
handler.removeCommand("host");

handler.register("host", "[mapname] [mode]", "Open the server. Will default to survival and a random map if not specified.", arg ->
Log.warn("Changes have been made. Please restart the server for them to take effect. (tip: write 'exit' to shut down the server)")
arc.util.Log.warn("Changes have been made. Please restart the server for them to take effect. (tip: write 'exit' to shut down the server)")
);
return;
}
Expand Down

0 comments on commit 2bbeb41

Please sign in to comment.