]> git.xonotic.org Git - xonotic/xonotic-data.pk3dir.git/blobdiff - commands.cfg
Add 'muteban' alias for 'mute' command and indent code block in BAN_COMMAND for bette...
[xonotic/xonotic-data.pk3dir.git] / commands.cfg
index 5d4a7271ee0e9ff3902e1dbac5cb292fb4352c62..9e885a2692eb5db78bc5f07b63766e87258ef32a 100644 (file)
@@ -269,14 +269,16 @@ alias settemp_restore "qc_cmd_svcl settemp_restore"
 
 
 // ===================================
-//  banning - server/command/ipban.qc
+//  banning - server/ipban.qc
 // ===================================
 alias ban                  "qc_cmd_sv     ban                  ${* ?}" // Ban an IP address or a range of addresses (like 1.2.3)
 alias banlist              "qc_cmd_sv     banlist              ${* ?}" // List all existing bans
 alias kickban              "qc_cmd_sv     kickban              ${* ?}" // Disconnect a client and ban it at the same time
 alias mute                 "qc_cmd_sv     mute                 ${* ?}" // Disallow a client from talking by muting them
+alias muteban              "qc_cmd_sv     mute                 ${* ?}" // Alternative version of "mute", disallow a client from talking by muting them
 alias unban                "qc_cmd_sv     unban                ${* ?}" // Remove an existing ban
 alias unmute               "qc_cmd_sv     unmute               ${* ?}" // Unmute a client (Remove an existing muting ban)
+alias unmuteban            "qc_cmd_sv     unmute               ${* ?}" // Alternative version of "unmute", unmute a client (Remove an existing muting ban)
 
 // other aliases for ban commands
 alias bans "banlist"