Removed those ugly hazard doors!

Fixes issue 922.

Includes single tank bombs in the .dme for live testing.

git-svn-id: http://tgstation13.googlecode.com/svn/trunk@4696 316c924e-a436-60f5-8080-3fe189b3f50e
This commit is contained in:
petethegoat@gmail.com
2012-09-16 00:39:18 +00:00
parent 5f62f4c864
commit 382012f1f0
5 changed files with 36 additions and 33 deletions
+1 -5
View File
@@ -119,8 +119,4 @@
else
if(istype(source)) air_master.tiles_to_update += source
if(istype(destination)) air_master.tiles_to_update += destination
return 1
/obj/machinery/door/firedoor/border_only/hazard
name = "hazard door"
icon = 'icons/obj/doors/DoorHazard.dmi'
return 1
@@ -274,11 +274,17 @@ Please contact me on #coderbus IRC. ~Carn x
var/image/lying = image("icon" = 'icons/effects/genetics.dmi')
var/image/standing = image("icon" = 'icons/effects/genetics.dmi')
var/add_image = 0
var/g = "m"
if(gender == FEMALE) g = "f"
for(var/mut in mutations)
switch(mut)
if(HULK)
lying.underlays += "hulk[fat]_l"
standing.underlays += "hulk[fat]_s"
if(fat)
lying.underlays += "hulk_[fat]_l"
standing.underlays += "hulk_[fat]_s"
else
lying.underlays += "hulk_[g]_l"
standing.underlays += "hulk_[g]_s"
add_image = 1
if(COLD_RESISTANCE)
lying.underlays += "fire[fat]_l"