diff options
| author | Magnus Auvinen <magnus.auvinen@gmail.com> | 2008-10-18 20:50:42 +0000 |
|---|---|---|
| committer | Magnus Auvinen <magnus.auvinen@gmail.com> | 2008-10-18 20:50:42 +0000 |
| commit | c995aff8e3e7f756eab2740b82115fc0f5579b4a (patch) | |
| tree | 98215351273fee4498e458cfd2fa6411c1daf230 /datasrc | |
| parent | 3cdb90c10c29facca3b28f57c1c815bdcc5dc5b1 (diff) | |
| download | zcatch-c995aff8e3e7f756eab2740b82115fc0f5579b4a.tar.gz zcatch-c995aff8e3e7f756eab2740b82115fc0f5579b4a.zip | |
fixed input state mask, missed one bit that could make the server hang itself
Diffstat (limited to 'datasrc')
| -rw-r--r-- | datasrc/network.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/datasrc/network.py b/datasrc/network.py index bb67c85f..474cd33b 100644 --- a/datasrc/network.py +++ b/datasrc/network.py @@ -11,7 +11,7 @@ Powerups = ["HEALTH", "ARMOR", "WEAPON", "NINJA"] RawHeader = ''' enum { - INPUT_STATE_MASK=0x2f, + INPUT_STATE_MASK=0x3f, }; ''' |