diff --git a/code/datums/status_effects/buffs.dm b/code/datums/status_effects/buffs.dm index c270be2abe95..cd9407858b9f 100644 --- a/code/datums/status_effects/buffs.dm +++ b/code/datums/status_effects/buffs.dm @@ -642,14 +642,16 @@ /datum/status_effect/time_dilation/on_apply() owner.next_move_modifier *= 0.5 owner.action_speed_modifier *= 0.5 + owner.ignore_slowdown(id) return TRUE /datum/status_effect/time_dilation/on_remove() owner.next_move_modifier *= 2 owner.action_speed_modifier *= 2 + owner.unignore_slowdown(id) /obj/screen/alert/status_effect/time_dilation name = "Time Dilation" - desc = "Your actions are twice as fast, and the delay between them is halved." + desc = "Your actions are twice as fast, and the delay between them is halved. Additionally, you are immune to slowdown." icon = 'yogstation/icons/mob/actions/actions_darkspawn.dmi' icon_state = "time_dilation" //yogs end