diff --git a/code/__DEFINES/radio.dm b/code/__DEFINES/radio.dm index c7ba759d51c..943acdbc7ef 100644 --- a/code/__DEFINES/radio.dm +++ b/code/__DEFINES/radio.dm @@ -4,7 +4,6 @@ #define RADIO_CHANNEL_COMMON "Common" #define RADIO_KEY_COMMON ";" -#define RADIO_TOKEN_COMMON ";" #define RADIO_CHANNEL_SECURITY "Security" #define RADIO_KEY_SECURITY "s" diff --git a/code/game/objects/items/devices/radio/headset.dm b/code/game/objects/items/devices/radio/headset.dm index 8c8ff78691f..63fd96fedf0 100644 --- a/code/game/objects/items/devices/radio/headset.dm +++ b/code/game/objects/items/devices/radio/headset.dm @@ -1,6 +1,6 @@ // Used for translating channels to tokens on examination GLOBAL_LIST_INIT(channel_tokens, list( - RADIO_CHANNEL_COMMON = RADIO_TOKEN_COMMON, + RADIO_CHANNEL_COMMON = RADIO_KEY_COMMON, RADIO_CHANNEL_SCIENCE = RADIO_TOKEN_SCIENCE, RADIO_CHANNEL_COMMAND = RADIO_TOKEN_COMMAND, RADIO_CHANNEL_MEDICAL = RADIO_TOKEN_MEDICAL,