From ed929dda12ed5b4eba2aa89e9a5c7eb55fb730d0 Mon Sep 17 00:00:00 2001 From: keronshb Date: Wed, 9 Jun 2021 15:12:22 -0400 Subject: [PATCH] Changes up the animation a bit --- code/datums/mutations/space_adaptation.dm | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/code/datums/mutations/space_adaptation.dm b/code/datums/mutations/space_adaptation.dm index d06ab90958..4431720375 100644 --- a/code/datums/mutations/space_adaptation.dm +++ b/code/datums/mutations/space_adaptation.dm @@ -13,14 +13,14 @@ return ADD_TRAIT(owner, TRAIT_RESISTCOLD, "cold_resistance") ADD_TRAIT(owner, TRAIT_RESISTLOWPRESSURE, "cold_resistance") - owner.add_filter("space_glow", 2, list("type" = "outline", "color" = "#ffe46bd8", "size" = 2)) + owner.add_filter("space_glow", 2, list("type" = "outline", "color" = "#ffe46bd8", "size" = 1)) addtimer(CALLBACK(src, .proc/glow_loop, owner), rand(1,19)) /datum/mutation/human/space_adaptation/proc/glow_loop(mob/living/carbon/human/owner) var/filter = owner.get_filter("space_glow") if(filter) - animate(filter, alpha = 110, time = 15, loop = -1) - animate(alpha = 40, time = 25) + animate(filter, alpha = 190, time = 15, loop = -1) + animate(alpha = 110, time = 25) /datum/mutation/human/space_adaptation/on_losing(mob/living/carbon/human/owner) if(..())