From deb7c90f3de5e48cf2f5ca1999228916b0e01b73 Mon Sep 17 00:00:00 2001 From: Aurorablade Date: Thu, 15 Nov 2018 02:51:49 -0500 Subject: [PATCH] possible eating bug fix i more then likely reversed my logic --- .../mob/living/simple_animal/hostile/floorcluwne.dm | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) diff --git a/code/modules/mob/living/simple_animal/hostile/floorcluwne.dm b/code/modules/mob/living/simple_animal/hostile/floorcluwne.dm index c83b1b44167..76f08cdd409 100644 --- a/code/modules/mob/living/simple_animal/hostile/floorcluwne.dm +++ b/code/modules/mob/living/simple_animal/hostile/floorcluwne.dm @@ -235,7 +235,7 @@ I.throw_at(H, 4, 3) to_chat(H, "What threw that?") - if(prob(2)) + if(prob(4)) to_chat(H, "yalp ot tnaw I") Appear() manifested = FALSE @@ -279,7 +279,7 @@ if(prob(6)) for(var/turf/simulated/floor/O in range(src, 6)) O.MakeSlippery(TURF_WET_WATER, 10) - playsound(src, 'sound/effects/meteorimpact.ogg', 30, 1) + playsound(src, 'sound/effects/clownstep1.ogg', 30, 1) if(prob(5)) to_chat(H, "WHAT THE FUCK IS THAT?!") @@ -345,8 +345,13 @@ H.anchored = TRUE addtimer(CALLBACK(src, /mob/living/simple_animal/hostile/floor_cluwne/.proc/Kill, H), 100) H.visible_message("[src] pulls [H] under the floor!") - else + else//some fuck pulled away our food + stage = STAGE_TORMENT + eating = FALSE + + else//STOP PULLING AWAY THE FOOD eating = FALSE + stage = STAGE_TORMENT manifested = FALSE Manifest()