effect/blob to structure/blob

This commit is contained in:
davipatury
2017-03-27 18:41:19 -03:00
parent 9ebb84ea5e
commit 550fdd3ae3
16 changed files with 108 additions and 108 deletions

View File

@@ -1,4 +1,4 @@
/obj/effect/blob/shield
/obj/structure/blob/shield
name = "strong blob"
icon = 'icons/mob/blob.dmi'
icon_state = "blob_idle"
@@ -7,15 +7,15 @@
fire_resist = 2
/obj/effect/blob/shield/update_icon()
/obj/structure/blob/shield/update_icon()
if(health <= 0)
qdel(src)
return
return
/obj/effect/blob/shield/fire_act(datum/gas_mixture/air, exposed_temperature, exposed_volume)
/obj/structure/blob/shield/fire_act(datum/gas_mixture/air, exposed_temperature, exposed_volume)
return
/obj/effect/blob/shield/CanPass(atom/movable/mover, turf/target, height=0)
/obj/structure/blob/shield/CanPass(atom/movable/mover, turf/target, height=0)
if(istype(mover) && mover.checkpass(PASSBLOB)) return 1
return 0