mirror of
https://github.com/PolarisSS13/Polaris.git
synced 2026-08-24 21:56:55 +01:00
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:
@@ -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"
|
||||
|
||||
@@ -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()
|
||||
|
||||
@@ -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)
|
||||
|
||||
Reference in New Issue
Block a user