diff options
| author | Magnus Auvinen <magnus.auvinen@gmail.com> | 2008-11-08 12:50:46 +0000 |
|---|---|---|
| committer | Magnus Auvinen <magnus.auvinen@gmail.com> | 2008-11-08 12:50:46 +0000 |
| commit | 388a04d957a0fd9af9287cbe6f1ee905371886c7 (patch) | |
| tree | a493826c21bfca82dbd7b122d859025e0693c62e /datasrc/network.py | |
| parent | 4fa7806009ec4b6acfbf545e56d22e87ea5fa3f2 (diff) | |
| download | zcatch-388a04d957a0fd9af9287cbe6f1ee905371886c7.tar.gz zcatch-388a04d957a0fd9af9287cbe6f1ee905371886c7.zip | |
better voting support
Diffstat (limited to 'datasrc/network.py')
| -rw-r--r-- | datasrc/network.py | 11 |
1 files changed, 7 insertions, 4 deletions
diff --git a/datasrc/network.py b/datasrc/network.py index 474cd33b..d09c5b33 100644 --- a/datasrc/network.py +++ b/datasrc/network.py @@ -232,6 +232,13 @@ Messages = [ NetIntRange("emoticon", 0, 'NUM_EMOTICONS-1'), ]), + NetMessage("sv_vote_clearoptions", [ + ]), + + NetMessage("sv_vote_option", [ + NetString("command"), + ]), + NetMessage("sv_vote_set", [ NetIntRange("timeout", 0, 60), NetString("description"), @@ -244,10 +251,6 @@ Messages = [ NetIntRange("pass", 0, 'MAX_CLIENTS'), NetIntRange("total", 0, 'MAX_CLIENTS'), ]), - - NetMessage("sv_maplist", [ - NetString("names"), - ]), ### Client messages NetMessage("cl_say", [ |