Fixes posibrain ghost alert

Yes, I did put the args in the wrong order. Kill me.
This commit is contained in:
Tkdrg
2015-11-12 02:30:51 -03:00
parent 6de0264007
commit fdccdb6ab9
@@ -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="<a href=?src=\ref[src];activate=1>(Click to enter)</a>", '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="<a href=?src=\ref[src];activate=1>(Click to enter)</a>", source = src, attack_not_jump = 1)
posibrain_notif_cooldown = 1
spawn(askDelay) //Global one minute cooldown to avoid spam.
posibrain_notif_cooldown = 0