Merge pull request #8810 from Spookerton/spkrtn/cng/macro-changes-for-micro-reasons

fix up a bunch of macro cruft
This commit is contained in:
Atermonera
2022-11-05 11:19:38 -08:00
committed by GitHub
47 changed files with 120 additions and 122 deletions
+1 -1
View File
@@ -962,7 +962,7 @@ This is the proc mobs get to turn into a ghost. Forked from ghostize due to comp
throw_alert("\ref[source]_notify_revive", /obj/screen/alert/notify_cloning, new_master = source)
to_chat(src, "<span class='ghostalert'><a href=?src=[REF(src)];reenter=1>(Click to re-enter)</a></span>")
if(sound)
SEND_SOUND(src, sound(sound))
sound_to(src, sound(sound))
/mob/observer/dead/verb/respawn()
set name = "Respawn"
+1 -1
View File
@@ -81,7 +81,7 @@
if((last_law_notification + 1 SECOND) > world.time)
return
last_law_notification = world.time
SEND_SOUND(src, 'sound/machines/defib_success.ogg')
sound_to(src, 'sound/machines/defib_success.ogg')
window_flash(client)
to_chat(src, span("warning", message))
@@ -59,7 +59,7 @@
return ..()
/mob/living/simple_mob/mechanical/mecha/Destroy()
qdel_null(sparks)
QDEL_NULL(sparks)
return ..()
/mob/living/simple_mob/mechanical/mecha/death()
+1 -1
View File
@@ -50,7 +50,7 @@
/datum/plane_holder/Destroy()
my_mob = null
QDEL_LIST_NULL(plane_masters) //Goodbye my children, be free
QDEL_NULL_LIST(plane_masters) //Goodbye my children, be free
return ..()
/datum/plane_holder/proc/set_vis(var/which = null, var/state = FALSE)