fixed input state mask, missed one bit that could make the server hang itself

This commit is contained in:
Magnus Auvinen 2008-10-18 20:50:42 +00:00
parent 3cdb90c10c
commit c995aff8e3

View file

@ -11,7 +11,7 @@ Powerups = ["HEALTH", "ARMOR", "WEAPON", "NINJA"]
RawHeader = '''
enum
{
INPUT_STATE_MASK=0x2f,
INPUT_STATE_MASK=0x3f,
};
'''