From fdccdb6ab911bb14d6bf11933e1baf70a168dc5c Mon Sep 17 00:00:00 2001 From: Tkdrg Date: Thu, 12 Nov 2015 02:30:51 -0300 Subject: [PATCH] Fixes posibrain ghost alert Yes, I did put the args in the wrong order. Kill me. --- code/modules/mob/living/carbon/brain/posibrain.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/mob/living/carbon/brain/posibrain.dm b/code/modules/mob/living/carbon/brain/posibrain.dm index 31e18bb106c..6bdf472ad15 100644 --- a/code/modules/mob/living/carbon/brain/posibrain.dm +++ b/code/modules/mob/living/carbon/brain/posibrain.dm @@ -22,7 +22,7 @@ var/global/posibrain_notif_cooldown = 0 /obj/item/device/mmi/posibrain/proc/ping_ghosts(msg) if(!posibrain_notif_cooldown) - notify_ghosts("Positronic brain [msg] in [get_area(src)]!", enter_link="(Click to enter)", 'sound/effects/ghost2.ogg', source = src, attack_not_jump = 1) + notify_ghosts("Positronic brain [msg] in [get_area(src)]!", 'sound/effects/ghost2.ogg', enter_link="(Click to enter)", source = src, attack_not_jump = 1) posibrain_notif_cooldown = 1 spawn(askDelay) //Global one minute cooldown to avoid spam. posibrain_notif_cooldown = 0