Skip to content

Commit

Permalink
didn't mean it
Browse files Browse the repository at this point in the history
  • Loading branch information
Helg2 authored Jul 24, 2023
1 parent 1bf7e76 commit 80993df
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions code/modules/antagonists/heretic/magic/star_touch.dm
Original file line number Diff line number Diff line change
Expand Up @@ -230,7 +230,7 @@
/// What to add when the beam connects to a target
/datum/status_effect/cosmic_beam/proc/on_beam_hit(mob/living/target)
if(!istype(target, /mob/living/basic/heretic_summon/star_gazer))
target.AddElement(/datum/element/effect_trail/cosmic_trail)
target.AddElement(/datum/element/effect_trail, /obj/effect/forcefield/cosmic_field/fast)
return

/// What to process when the beam is connected to a target
Expand All @@ -242,5 +242,5 @@
/// What to remove when the beam disconnects from a target
/datum/status_effect/cosmic_beam/proc/on_beam_release(mob/living/target)
if(!istype(target, /mob/living/basic/heretic_summon/star_gazer))
target.RemoveElement(/datum/element/effect_trail/cosmic_trail)
target.AddElement(/datum/element/effect_trail, /obj/effect/forcefield/cosmic_field/fast)
return

0 comments on commit 80993df

Please sign in to comment.