Skip to content

Commit

Permalink
Update burrowing_heaven.dm
Browse files Browse the repository at this point in the history
Update burrowing_heaven.dm
  • Loading branch information
Kitsunemitsu committed Jan 13, 2025
1 parent 4d2fb50 commit 5861098
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -109,15 +109,15 @@
/mob/living/simple_animal/hostile/abnormality/burrowingheaven/proc/teleport()
var/turf/T = pick(GLOB.department_centers)
forceMove(T)
addtimer(CALLBACK(src, .proc/aoe), 2 SECONDS)
addtimer(CALLBACK(src, .PROC_REF(aoe), 2 SECONDS))

//The actual attack
/mob/living/simple_animal/hostile/abnormality/burrowingheaven/proc/aoe()
for(var/mob/living/carbon/human/H in view(7))
to_chat(H, span_userdanger("Burrowing Heaven burns into your skull!"))
H.apply_damage(70, BLACK_DAMAGE, null, H.run_armor_check(null, BLACK_DAMAGE), spread_damage = TRUE)
new /obj/effect/temp_visual/dir_setting/bloodsplatter(get_turf(H), pick(GLOB.alldirs))
addtimer(CALLBACK(src, .proc/teleport), 50 SECONDS)
addtimer(CALLBACK(src, PROC_REF(teleport), 50 SECONDS))

//Work stuff
//Need 2 people to actually work on it
Expand Down

0 comments on commit 5861098

Please sign in to comment.