aboutsummaryrefslogtreecommitdiffstats
path: root/src/jake2
diff options
context:
space:
mode:
authorRene Stoeckel <[email protected]>2005-12-10 22:45:01 +0000
committerRene Stoeckel <[email protected]>2005-12-10 22:45:01 +0000
commit73aa25699746b917192f2d9801f953e2f279a53b (patch)
treea124960af62bfc678ace087ea1f246794d02288e /src/jake2
parent8a64f2dca2b974b7638b324deb00c2371ea384d9 (diff)
bugfix with non decreasing armor
Diffstat (limited to 'src/jake2')
-rw-r--r--src/jake2/game/GameCombat.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/jake2/game/GameCombat.java b/src/jake2/game/GameCombat.java
index c1ff24f..721c65d 100644
--- a/src/jake2/game/GameCombat.java
+++ b/src/jake2/game/GameCombat.java
@@ -19,7 +19,7 @@ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*/
// Created on 16.11.2005 by RST.
-// $Id: GameCombat.java,v 1.1 2005-11-16 22:24:53 salomo Exp $
+// $Id: GameCombat.java,v 1.2 2005-12-10 22:45:01 salomo Exp $
package jake2.game;
@@ -240,7 +240,7 @@ public class GameCombat {
client = ent.client;
- if (client != null)
+ if (client == null)
return 0;
if ((dflags & Defines.DAMAGE_NO_ARMOR) != 0)