From 0bd58702f3a19cd233fc4fc71e84d7d0fb3dad50 Mon Sep 17 00:00:00 2001 From: SkyratBot <59378654+SkyratBot@users.noreply.github.com> Date: Fri, 12 Jan 2024 03:05:48 +0100 Subject: [PATCH] [MIRROR] Fix badass balloon ghost alert passing the wrong thing to it [MDB IGNORE] (#26076) * 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> --- 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?", )