Fixes refund with strong blob spawned near Core

This commit is contained in:
Arkatos1
2019-04-08 19:42:56 +02:00
parent f64ac6ec0a
commit de61851512
2 changed files with 4 additions and 1 deletions

View File

@@ -82,7 +82,7 @@
continue
var/obj/structure/blob/normal/B = locate() in get_step(src, b_dir)
if(B)
B.change_to(/obj/structure/blob/shield)
B.change_to(/obj/structure/blob/shield/core)
if(B && overmind)
B.color = overmind.blob_reagent_datum.color
else

View File

@@ -8,6 +8,9 @@
point_return = 4
var/maxHealth = 75
/obj/structure/blob/shield/core
point_return = 0
/obj/structure/blob/shield/update_icon()
if(health <= 0)
qdel(src)