From 10baa3d73d7c900c42b47f6ad5c54c20556b8498 Mon Sep 17 00:00:00 2001 From: NovaBot <154629622+NovaBot13@users.noreply.github.com> Date: Thu, 11 Jan 2024 17:19:20 -0500 Subject: [PATCH] [MIRROR] Fix badass balloon ghost alert passing the wrong thing to it (#409) * Fix badass balloon ghost alert passing the wrong thing to it (#80902) ## About The Pull Request Ghost alert doesn't take datums, it takes atoms. So we take the parent return, which is the atom created, and pass that instead. ## Changelog :cl: Melbert fix: Ghost alert for buying a badass balloon should have a proper icon /:cl: * Fix badass balloon ghost alert passing the wrong thing to it --------- Co-authored-by: MrMelbert <51863163+MrMelbert@users.noreply.github.com> Co-authored-by: NovaBot --- code/modules/uplink/uplink_items/badass.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/uplink/uplink_items/badass.dm b/code/modules/uplink/uplink_items/badass.dm index dbd28a136c8..da7212ee8fc 100644 --- a/code/modules/uplink/uplink_items/badass.dm +++ b/code/modules/uplink/uplink_items/badass.dm @@ -24,7 +24,7 @@ notify_ghosts( "[user] has purchased a BADASS Syndicate Balloon!", - source = src, + source = ., header = "What are they THINKING?", )