Merge pull request #1997 from CIB/master

Go fixes
This commit is contained in:
Mloc
2012-11-22 12:14:25 -08:00
3 changed files with 10 additions and 3 deletions

View File

@@ -187,7 +187,10 @@
var/word = pick("dizzy","woosey","faint")
src << "\red You feel extremely [word]"
if(0 to 122)
toxloss += 200
// There currently is a strange bug here. If the mob is not below -100 health
// when death() is called, apparently they will be just fine, and this way it'll
// spam deathgasp. Adjusting toxloss ensures the mob will stay dead.
toxloss += 300 // just to be safe!
death()