Minor atmos fixes for resin and mineral structures

This commit is contained in:
Fleure
2013-09-08 01:01:12 +01:00
parent 6206285633
commit 73d25c7c04
2 changed files with 24 additions and 1 deletions
+21 -1
View File
@@ -23,6 +23,26 @@
anchored = 1
var/health = 200
/obj/structure/alien/resin/New(location)
..()
air_update_turf(1)
return
/obj/structure/alien/resin/Del()
density = 0
air_update_turf(1)
..()
return
/obj/structure/alien/resin/Move()
air_update_turf(1)
..()
air_update_turf(1)
return
/obj/structure/alien/resin/CanAtmosPass()
return !density
/obj/structure/alien/resin/wall
name = "resin wall"
desc = "Purple slime solidified into a wall."
@@ -416,4 +436,4 @@
spawn(rand(150, 200))
if(src)
tick()
tick()
@@ -21,10 +21,13 @@
icon_state = mineralType
name = "[mineralType] door"
air_update_turf(1)
return
Del()
density = 0
air_update_turf(1)
..()
return
Move()
air_update_turf(1)