diff options
| author | heinrich5991 <heinrich5991@gmail.com> | 2011-01-21 20:46:00 +0100 |
|---|---|---|
| committer | oy <Tom_Adams@web.de> | 2011-01-23 17:53:53 +0100 |
| commit | 43b67aaa57619ae4457458ced00a200340fdb70f (patch) | |
| tree | cdac67372c5499bec4debcef51d3196c83840fc3 /src/game/client | |
| parent | fbe1f9cedfc0a64993651f22df452c17aad54c42 (diff) | |
| download | zcatch-43b67aaa57619ae4457458ced00a200340fdb70f.tar.gz zcatch-43b67aaa57619ae4457458ced00a200340fdb70f.zip | |
added server command to clear the votes. this fixes #47 partially
Diffstat (limited to 'src/game/client')
| -rw-r--r-- | src/game/client/gameclient.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/game/client/gameclient.cpp b/src/game/client/gameclient.cpp index 9bb3bb90..f1ff3709 100644 --- a/src/game/client/gameclient.cpp +++ b/src/game/client/gameclient.cpp @@ -194,6 +194,7 @@ void CGameClient::OnConsoleInit() Console()->Register("set_team", "ii", CFGFLAG_SERVER, 0, 0, "Set team of player to team"); Console()->Register("set_team_all", "i", CFGFLAG_SERVER, 0, 0, "Set team of all players to team"); Console()->Register("addvote", "r", CFGFLAG_SERVER, 0, 0, "Add a voting option"); + Console()->Register("clear_votes", "", CFGFLAG_SERVER, 0, 0, "Clears the voting options"); Console()->Register("vote", "r", CFGFLAG_SERVER, 0, 0, "Force a vote to yes/no"); |