From 07f9f942e5471fa76de11178aaabdec4903bc8c4 Mon Sep 17 00:00:00 2001 From: Aurorablade Date: Sun, 15 Apr 2018 20:39:01 -0400 Subject: [PATCH] tweak to colors --- .../mob/living/simple_animal/hostile/floorcluwne.dm | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/code/modules/mob/living/simple_animal/hostile/floorcluwne.dm b/code/modules/mob/living/simple_animal/hostile/floorcluwne.dm index a574c083405..259de9b0cdb 100644 --- a/code/modules/mob/living/simple_animal/hostile/floorcluwne.dm +++ b/code/modules/mob/living/simple_animal/hostile/floorcluwne.dm @@ -147,7 +147,6 @@ message_admins("Floor Cluwne was deleted due to a lack of valid targets, if this was a manually targeted instance please re-evaluate your choice.") qdel(src) - /mob/living/simple_animal/hostile/floor_cluwne/proc/Manifest()//handles disappearing and appearance anim var/obj/effect/temp_visual/fcluwne_manifest/manifest = /obj/effect/temp_visual/fcluwne_manifest if(manifested) @@ -170,12 +169,12 @@ density = TRUE -/mob/living/simple_animal/hostile/floor_cluwne/proc/Reset_View(screens, colour, mob/living/carbon/human/H) +/mob/living/simple_animal/hostile/floor_cluwne/proc/Reset_View(screens, color, mob/living/carbon/human/H) if(screens) for(var/whole_screen in screens) animate(whole_screen, transform = matrix(), time = 5, easing = QUAD_EASING) - if(colour && H) - H.client.color = colour + if(color && H) + animate(H.client, color = color, time = 5) /mob/living/simple_animal/hostile/floor_cluwne/proc/On_Stage()