diff --git a/code/game/objects/effects/effect_system/effects_other.dm b/code/game/objects/effects/effect_system/effects_other.dm index dda7a31249b..ab4a464d001 100644 --- a/code/game/objects/effects/effect_system/effects_other.dm +++ b/code/game/objects/effects/effect_system/effects_other.dm @@ -1,14 +1,12 @@ /// Ion trails for jetpacks, ion thrusters and other space-flying things /obj/effect/particle_effect/ion_trails name = "ion trails" - icon_state = "ion_trails" + icon_state = "ion_fade" /obj/effect/particle_effect/ion_trails/Initialize(mapload, targetdir) . = ..() dir = targetdir - flick("ion_fade", src) - icon_state = null - QDEL_IN(src, 2 SECONDS) + QDEL_IN(src, 0.6 SECONDS) //Reagent-based explosion effect /datum/effect_system/reagents_explosion diff --git a/icons/effects/effects.dmi b/icons/effects/effects.dmi index 656a8380279..1581440b4fe 100644 Binary files a/icons/effects/effects.dmi and b/icons/effects/effects.dmi differ