TG update: 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
committed by Albert Iordache
parent 8eba5f595f
commit ea79e4b272
3 changed files with 0 additions and 6 deletions

View File

@@ -71,8 +71,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

@@ -71,8 +71,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

@@ -74,8 +74,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)