diff options
| author | Magnus Auvinen <magnus.auvinen@gmail.com> | 2007-12-13 20:28:22 +0000 |
|---|---|---|
| committer | Magnus Auvinen <magnus.auvinen@gmail.com> | 2007-12-13 20:28:22 +0000 |
| commit | c3b492b4be53cd6ec4be3948d86bbc993f187787 (patch) | |
| tree | 2f2d2eca75c98d6fe2a97aeaf092288fc7745d03 /src/game/server/srv_common.h | |
| parent | 8f39b81ab0c49bd2c46dcdd191e626d577b7ba1d (diff) | |
| download | zcatch-c3b492b4be53cd6ec4be3948d86bbc993f187787.tar.gz zcatch-c3b492b4be53cd6ec4be3948d86bbc993f187787.zip | |
variuos crash fixes and fixed ninja
Diffstat (limited to 'src/game/server/srv_common.h')
| -rw-r--r-- | src/game/server/srv_common.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/game/server/srv_common.h b/src/game/server/srv_common.h index 901e37af..b28d3066 100644 --- a/src/game/server/srv_common.h +++ b/src/game/server/srv_common.h @@ -14,7 +14,7 @@ inline bool cmask_is_set(int mask, int cid) { return (mask&cmask_one(cid)) != 0; class event_handler { static const int MAX_EVENTS = 128; - static const int MAX_DATASIZE = 128*4; + static const int MAX_DATASIZE = 128*64; int types[MAX_EVENTS]; // TODO: remove some of these arrays int offsets[MAX_EVENTS]; |