Update of /cvsroot/jake2/jake2/src/jake2/game
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv5090/src/jake2/game
Modified Files:
GameCombat.java
Log Message:
bugfix with non decreasing armor
Index: GameCombat.java
===================================================================
RCS file: /cvsroot/jake2/jake2/src/jake2/game/GameCombat.java,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -d -r1.1 -r1.2
*** GameCombat.java 16 Nov 2005 22:24:53 -0000 1.1
--- GameCombat.java 10 Dec 2005 22:45:01 -0000 1.2
***************
*** 241,245 ****
client = ent.client;
! if (client != null)
return 0;
--- 241,245 ----
client = ent.client;
! if (client == null)
return 0;
|