about summary refs log tree commit diff
path: root/src/game
diff options
context:
space:
mode:
authorMarius "Teelevision" Neugebauer <marius@teele.eu>2014-03-26 22:33:41 +0100
committerMarius "Teelevision" Neugebauer <marius@teele.eu>2014-03-26 22:33:41 +0100
commit05b3c6e55a27accf5d3eafffbdc367e73aac87c0 (patch)
tree9f81cc47318fe68de2f01959cd47d32588a03dbd /src/game
parent5fbea9511c48ad9a6df597edda8fb06bbbfcbe36 (diff)
downloadzcatch-05b3c6e55a27accf5d3eafffbdc367e73aac87c0.tar.gz
zcatch-05b3c6e55a27accf5d3eafffbdc367e73aac87c0.zip
rcon command unmute added as alias for unmuteid
Diffstat (limited to 'src/game')
-rw-r--r--src/game/server/gamecontext.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/game/server/gamecontext.cpp b/src/game/server/gamecontext.cpp
index 80bf95a3..da107b8e 100644
--- a/src/game/server/gamecontext.cpp
+++ b/src/game/server/gamecontext.cpp
@@ -1713,6 +1713,7 @@ void CGameContext::OnConsoleInit()
 	Console()->Register("vote", "r", CFGFLAG_SERVER, ConVote, this, "Force a vote to yes/no");
 
 	Console()->Register("mute", "ii", CFGFLAG_SERVER, ConMute, this, "Mutes a player for x sec");
+	Console()->Register("unmute", "i", CFGFLAG_SERVER, ConUnmuteID, this, "Unmutes a player by its id");
 	Console()->Register("unmuteid", "i", CFGFLAG_SERVER, ConUnmuteID, this, "Unmutes a player by its client id");
 	Console()->Register("unmuteip", "i", CFGFLAG_SERVER, ConUnmuteIP, this, "Removes a mute by its index");
 	Console()->Register("mutes", "", CFGFLAG_SERVER, ConMutes, this, "Show all mutes");