From 3eb2a5648e5b1f6ba873f28f4309ae38958fba2d Mon Sep 17 00:00:00 2001 From: Fox McCloud Date: Tue, 26 May 2020 01:37:20 -0400 Subject: [PATCH] Fixes Intercomms and Station Bounce Radios (#13497) --- code/game/objects/items/devices/radio/radio.dm | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/code/game/objects/items/devices/radio/radio.dm b/code/game/objects/items/devices/radio/radio.dm index 483db1db86d..4c2aaa82c1e 100644 --- a/code/game/objects/items/devices/radio/radio.dm +++ b/code/game/objects/items/devices/radio/radio.dm @@ -440,10 +440,11 @@ GLOBAL_LIST_INIT(default_medbay_channels, list( if(!instant) // Simulate two seconds of lag addtimer(CALLBACK(GLOBAL_PROC, .proc/broadcast_message, tcm), 20) + QDEL_IN(tcm, 20) else // Nukeops + Deathsquad headsets are instant and should work the same, whether there is comms or not broadcast_message(tcm) - qdel(tcm) // Delete the message datum + qdel(tcm) // Delete the message datum return TRUE // If we didnt get here, oh fuck