]> de.git.xonotic.org Git - xonotic/xonotic-data.pk3dir.git/commitdiff
Lower fish drown damage so they don't die instantly
authorMario <mario.mario@y7mail.com>
Sat, 26 Jan 2013 09:21:16 +0000 (20:21 +1100)
committerMario <mario.mario@y7mail.com>
Sat, 26 Jan 2013 09:21:16 +0000 (20:21 +1100)
qcsrc/server/monsters/lib/monsters.qc

index 8e50160e723f6ea1c06a82aeb3022054d3614480..cc7418874cba870cb7e948c3679e1abe752a3cfd 100644 (file)
@@ -403,7 +403,7 @@ void monster_move(float runspeed, float walkspeed, float stopspeed, float manim_
                if(self.waterlevel < WATERLEVEL_WETFEET)
                {
                        self.angles = '0 0 -90';
-                       Damage (self, world, world, 10, DEATH_DROWN, self.origin, '0 0 0');
+                       Damage (self, world, world, 1, DEATH_DROWN, self.origin, '0 0 0');
                        if(random() < 0.5)
                        {
                                self.velocity_y += random() * 50;