Update of /cvsroot/jake2/jake2/src/jake2/game
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv30639/src/jake2/game
Modified Files:
GameUtil.java
Log Message:
developer msg added for killing and pickup.
Index: GameUtil.java
===================================================================
RCS file: /cvsroot/jake2/jake2/src/jake2/game/GameUtil.java,v
retrieving revision 1.9
retrieving revision 1.10
diff -C2 -d -r1.9 -r1.10
*** GameUtil.java 6 Feb 2005 19:04:55 -0000 1.9
--- GameUtil.java 19 Feb 2005 21:19:23 -0000 1.10
***************
*** 606,609 ****
--- 606,610 ----
public static void Killed(edict_t targ, edict_t inflictor,
edict_t attacker, int damage, float[] point) {
+ Com.DPrintf("Killing a " + targ.classname + "\n");
if (targ.health < -999)
targ.health = -999;
***************
*** 1503,1507 ****
if (!taken)
return;
! //Com.p("Picked up:" + ent.classname);
if (!((GameBase.coop.value != 0) && (ent.item.flags & Defines.IT_STAY_COOP) != 0)
--- 1504,1509 ----
if (!taken)
return;
!
! Com.dprintln("Picked up:" + ent.classname);
if (!((GameBase.coop.value != 0) && (ent.item.flags & Defines.IT_STAY_COOP) != 0)
|