r3796 - trunk/data/qcsrc/server

DONOTREPLY at icculus.org DONOTREPLY at icculus.org
Wed Jul 9 02:02:58 EDT 2008


Author: div0
Date: 2008-07-09 02:02:58 -0400 (Wed, 09 Jul 2008)
New Revision: 3796

Modified:
   trunk/data/qcsrc/server/g_damage.qc
Log:
fix ctf bug with flag touching after dead


Modified: trunk/data/qcsrc/server/g_damage.qc
===================================================================
--- trunk/data/qcsrc/server/g_damage.qc	2008-07-08 18:41:39 UTC (rev 3795)
+++ trunk/data/qcsrc/server/g_damage.qc	2008-07-09 06:02:58 UTC (rev 3796)
@@ -490,7 +490,7 @@
 		// Instead, prepare the victim for his death...
 		targ.armorvalue = 0;
 		targ.spawnshieldtime = 0;
-		targ.health = 1;
+		targ.health = 0.9; // this is < 1
 		targ.flags -= targ.flags & FL_GODMODE;
 		damage = 100000;
 	}




More information about the nexuiz-commits mailing list