From a90f0219363cd4bfa49a540b1863f4c3c9f642fb Mon Sep 17 00:00:00 2001 From: Iajret Creature <122297233+Steals-The-PRs@users.noreply.github.com> Date: Mon, 26 Feb 2024 22:38:22 +0300 Subject: [PATCH] Makes twitch and demoneye not get progressively worse and worse to see through the more times you use them (#2131) real... Co-authored-by: Paxilmaniac <82386923+Paxilmaniac@users.noreply.github.com> --- .../modules/deforest_medical_items/code/chemicals/demoneye.dm | 4 ---- .../modules/deforest_medical_items/code/chemicals/twitch.dm | 4 ---- 2 files changed, 8 deletions(-) diff --git a/modular_nova/modules/deforest_medical_items/code/chemicals/demoneye.dm b/modular_nova/modules/deforest_medical_items/code/chemicals/demoneye.dm index babd335da41..ac7bfe80cce 100644 --- a/modular_nova/modules/deforest_medical_items/code/chemicals/demoneye.dm +++ b/modular_nova/modules/deforest_medical_items/code/chemicals/demoneye.dm @@ -60,10 +60,6 @@ game_plane_master_controller.add_filter("demoneye_blur", 1, list("type" = "angular_blur", "size" = 4)) - for(var/filter in game_plane_master_controller.get_filters("demoneye_blur")) - animate(filter, loop = -1, size = 2, time = 3 SECONDS, easing = ELASTIC_EASING|EASE_OUT, flags = ANIMATION_PARALLEL) - animate(size = 5, time = 3 SECONDS, easing = ELASTIC_EASING|EASE_IN) - /datum/reagent/drug/demoneye/on_mob_end_metabolize(mob/living/carbon/human/our_guy) . = ..() diff --git a/modular_nova/modules/deforest_medical_items/code/chemicals/twitch.dm b/modular_nova/modules/deforest_medical_items/code/chemicals/twitch.dm index 4e6ec98e59c..ba489b8834e 100644 --- a/modular_nova/modules/deforest_medical_items/code/chemicals/twitch.dm +++ b/modular_nova/modules/deforest_medical_items/code/chemicals/twitch.dm @@ -71,10 +71,6 @@ game_plane_master_controller.add_filter(TWITCH_SCREEN_BLUR, 1, list("type" = "radial_blur", "size" = 0.02)) - for(var/filter in game_plane_master_controller.get_filters(TWITCH_SCREEN_BLUR)) - animate(filter, loop = -1, size = 0.04, time = 2 SECONDS, easing = ELASTIC_EASING|EASE_OUT, flags = ANIMATION_PARALLEL) - animate(size = 0.02, time = 6 SECONDS, easing = CIRCULAR_EASING|EASE_IN) - /datum/reagent/drug/twitch/on_mob_end_metabolize(mob/living/carbon/our_guy) . = ..()