diff options
author | Rene Stoeckel <[email protected]> | 2005-02-06 19:17:03 +0000 |
---|---|---|
committer | Rene Stoeckel <[email protected]> | 2005-02-06 19:17:03 +0000 |
commit | e45ab27141eb63d768abdf59942618373e61b6a9 (patch) | |
tree | 540cb7dfdbfcf70fe59c0318ba729dd5ab25f9ff | |
parent | ececdf51df52fa2599de0390fdb77011ec3649c9 (diff) |
cosmetic
-rw-r--r-- | src/jake2/client/CL_ents.java | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/jake2/client/CL_ents.java b/src/jake2/client/CL_ents.java index 4cc0bec..5f7c2cb 100644 --- a/src/jake2/client/CL_ents.java +++ b/src/jake2/client/CL_ents.java @@ -2,7 +2,7 @@ * java * Copyright (C) 2004 * - * $Id: CL_ents.java,v 1.9 2005-01-20 23:15:22 cawe Exp $ + * $Id: CL_ents.java,v 1.10 2005-02-06 19:17:03 salomo Exp $ */ /* Copyright (C) 1997-2001 Id Software, Inc. @@ -60,14 +60,17 @@ public class CL_ents { total = MSG.ReadByte(Globals.net_message); if ((total & Defines.U_MOREBITS1) != 0) { + b = MSG.ReadByte(Globals.net_message); total |= b << 8; } if ((total & Defines.U_MOREBITS2) != 0) { + b = MSG.ReadByte(Globals.net_message); total |= b << 16; } if ((total & Defines.U_MOREBITS3) != 0) { + b = MSG.ReadByte(Globals.net_message); total |= b << 24; } |