Module dpmod: Change committed

havoc at icculus.org havoc at icculus.org
Thu Feb 13 21:41:53 EST 2003


Commiter   : havoc
CVSROOT    : /cvs/cvsroot/twilight
Module     : dpmod
Commit time: 2003-02-14 02:41:53 UTC

Log message:

zombies heal half as fast now

Modified files:
     qc/m_zombie.qc

------=MIME.2558a92d7bce9dd90915b000745454ad
Content-Type: text/plain; name="dpmod.20030214.024153.havoc.diff"
Content-Disposition: attachment; filename="dpmod.20030214.024153.havoc.diff"
Content-Transfer-Encoding: 8bit

Index: dpmod/qc/m_zombie.qc
diff -u dpmod/qc/m_zombie.qc:1.2 dpmod/qc/m_zombie.qc:1.3
--- dpmod/qc/m_zombie.qc:1.2	Fri Nov 15 07:37:35 2002
+++ dpmod/qc/m_zombie.qc	Thu Feb 13 21:41:43 2003
@@ -59,7 +59,7 @@
         if (time < self.ltime)
                 return;
         self.ltime = time + 0.1;
-        self.health = self.health + 10;
+        self.health = self.health + 5;
         if (self.health > self.max_health)
                 self.health = self.max_health;
 };


More information about the twilight-commits mailing list