diff options
| author | oy <Tom_Adams@web.de> | 2011-03-25 09:49:21 +0100 |
|---|---|---|
| committer | oy <Tom_Adams@web.de> | 2011-03-25 09:49:21 +0100 |
| commit | 8ad3def65ea79f66c7508c219e05da3e5e117fe9 (patch) | |
| tree | 271fe1749241106456734d4d4e63e0171524b48a /src/game/server/gamecontext.h | |
| parent | d78c84b105341ac85d735445fa04265e64017802 (diff) | |
| download | zcatch-8ad3def65ea79f66c7508c219e05da3e5e117fe9.tar.gz zcatch-8ad3def65ea79f66c7508c219e05da3e5e117fe9.zip | |
added aliases for votes. Closes #144
Diffstat (limited to 'src/game/server/gamecontext.h')
| -rw-r--r-- | src/game/server/gamecontext.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/game/server/gamecontext.h b/src/game/server/gamecontext.h index 7379b74d..19926290 100644 --- a/src/game/server/gamecontext.h +++ b/src/game/server/gamecontext.h @@ -93,7 +93,7 @@ public: int64 m_VoteCloseTime; bool m_VoteUpdate; int m_VotePos; - char m_aVoteDescription[512]; + char m_aVoteDescription[64]; char m_aVoteCommand[512]; int m_VoteEnforce; enum @@ -106,6 +106,7 @@ public: { CVoteOption *m_pNext; CVoteOption *m_pPrev; + char m_aDescription[64]; char m_aCommand[1]; }; CHeap *m_pVoteOptionHeap; |