Merge pull request #11641 from PsiOmegaDelta/151209-BlobTweak

Blob tweaks.
This commit is contained in:
Chinsky
2015-12-12 02:56:43 +03:00
+9 -1
View File
@@ -120,7 +120,8 @@
if(prob(health))
expand(T)
return
B.pulse(forceLeft - 1, dirs)
if(forceLeft)
B.pulse(forceLeft - 1, dirs)
/obj/effect/blob/bullet_act(var/obj/item/projectile/Proj)
if(!Proj)
@@ -158,6 +159,7 @@
fire_resist = 2
expandType = /obj/effect/blob/shield
var/blob_may_process = 1
/obj/effect/blob/core/update_icon()
return
@@ -171,10 +173,16 @@
return ..()
/obj/effect/blob/core/process()
set waitfor = 0
if(!blob_may_process)
return
blob_may_process = 0
sleep(0)
pulse(20, list(NORTH, EAST))
pulse(20, list(NORTH, WEST))
pulse(20, list(SOUTH, EAST))
pulse(20, list(SOUTH, WEST))
blob_may_process = 1
/obj/effect/blob/shield
name = "strong blob"