From ef0ee505ea2d6c9bdca27f5b5c5ab2090b5164e5 Mon Sep 17 00:00:00 2001 From: Leland Kemble <70413276+lelandkemble@users.noreply.github.com> Date: Fri, 20 Feb 2026 16:30:28 -0500 Subject: [PATCH] Fixes radio encryption key quantum entanglement (#95210) ## About The Pull Request Radio encryption key removal handling, including nulling, is handled in `Exited()`. The key never exits the radio if it wasn't inside the radio to begin with. ## Why It's Good For The Game fixes #95207 ## Changelog :cl: fix: Radio encryption keys are no longer tied to their radios once removed /:cl: --- code/game/objects/items/devices/radio/radio.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/game/objects/items/devices/radio/radio.dm b/code/game/objects/items/devices/radio/radio.dm index 5052ee2dd19..fb6872a1927 100644 --- a/code/game/objects/items/devices/radio/radio.dm +++ b/code/game/objects/items/devices/radio/radio.dm @@ -102,7 +102,7 @@ . = ..() if(ispath(keyslot)) - keyslot = new keyslot() + keyslot = new keyslot(src) recalculateChannels() perform_update_icon = FALSE