diff options
Diffstat (limited to 'datasrc/network.py')
| -rw-r--r-- | datasrc/network.py | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/datasrc/network.py b/datasrc/network.py index 6bfaeea3..911672a6 100644 --- a/datasrc/network.py +++ b/datasrc/network.py @@ -267,7 +267,8 @@ Messages = [ NetMessage("Sv_VoteSet", [ NetIntRange("m_Timeout", 0, 60), - NetStringStrict("m_pDescription") + NetStringStrict("m_pDescription"), + NetStringStrict("m_pReason"), ]), NetMessage("Sv_VoteStatus", [ @@ -324,5 +325,6 @@ Messages = [ NetMessage("Cl_CallVote", [ NetStringStrict("m_Type"), NetStringStrict("m_Value"), + NetStringStrict("m_Reason"), ]), ] |