Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

SoW Hermit Fix #2604

Merged
merged 1 commit into from
Dec 15, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -800,16 +800,15 @@
if(!can_act || (status_flags & GODMODE))
return
can_act = FALSE
var/list/show_area = list()
show_area |= view(4, src)
for(var/turf/sT in show_area)
for(var/turf/open/sT in view(4, src))
new /obj/effect/temp_visual/cult/sparks(sT)
SLEEP_CHECK_DEATH(1.25 SECONDS)
playsound(src, 'sound/abnormalities/wrath_servant/hermit_magic.ogg', 75, FALSE, 10)
for(var/mob/living/L in show_area)
for(var/turf/open/sT in view(4, src))
new /obj/effect/temp_visual/small_smoke/halfsecond(sT)
for(var/mob/living/L in livinginview(4, src))
if(faction_check_mob(L))
continue
new /obj/effect/temp_visual/small_smoke/halfsecond(get_turf(L))
L.deal_damage(60, WHITE_DAMAGE)
can_act = TRUE
return
Expand Down
Loading