Removed some redundant checks

git-svn-id: http://tgstation13.googlecode.com/svn/trunk@2652 316c924e-a436-60f5-8080-3fe189b3f50e
This commit is contained in:
rockdtben
2011-12-10 14:14:48 +00:00
parent 2e2e43ab05
commit 46685aba5b
3 changed files with 0 additions and 6 deletions

View File

@@ -67,8 +67,6 @@
if(locate(/obj/effect/alien/weeds) in loc)
if(health >= 150)
adjustToxLoss(5)
if(getToxLoss() > max_plasma)
toxloss = max_plasma
else
adjustBruteLoss(-5)

View File

@@ -67,8 +67,6 @@
if(locate(/obj/effect/alien/weeds) in loc)
if(health >= 125)
adjustToxLoss(10)
if(getToxLoss() > max_plasma)
toxloss = max_plasma
else
adjustBruteLoss(-10)

View File

@@ -70,8 +70,6 @@
if(locate(/obj/effect/alien/weeds) in loc)
if(health >= 250)
adjustToxLoss(20)
if(getToxLoss() > max_plasma)
toxloss = max_plasma
else
bruteloss -= 5
adjustFireLoss(-5)