Adds more reasons to explosion logging (#28812)

* explos

* yeah good enough

* shorten that

* use ckey

* forgot this cause

* unfuck it
This commit is contained in:
Contrabang
2025-03-28 18:49:57 +00:00
committed by GitHub
parent c63dc53202
commit fde22d1c43
77 changed files with 120 additions and 117 deletions
@@ -339,7 +339,7 @@
/obj/machinery/power/port_gen/pacman/super/explode()
//a nice burst of radiation
radiation_pulse(get_turf(src), 2000, ALPHA_RAD)
explosion(loc, 3, 3, 5, 3)
explosion(loc, 3, 3, 5, 3, cause = "Exploding [name]")
qdel(src)
/obj/machinery/power/port_gen/pacman/mrs
@@ -372,7 +372,7 @@
/obj/machinery/power/port_gen/pacman/mrs/explode()
//no special effects, but the explosion is pretty big (same as a supermatter shard).
explosion(loc, 3, 6, 12, 16, 1)
explosion(loc, 3, 6, 12, 16, 1, cause = "Exploding [name]")
qdel(src)
#undef SHEET_VOLUME
@@ -78,5 +78,5 @@
stat &= ~EMPED
/obj/machinery/power/port_gen/proc/explode()
explosion(loc, -1, 3, 5, -1)
explosion(loc, -1, 3, 5, -1, cause = "Exploding [name]")
qdel(src)