diff --git a/code/game/objects/items/lore_radio.dm b/code/game/objects/items/lore_radio.dm index 4857b308be4..cff9f575559 100644 --- a/code/game/objects/items/lore_radio.dm +++ b/code/game/objects/items/lore_radio.dm @@ -25,7 +25,7 @@ /obj/item/lore_radio/attack_self(var/mob/user) if(SSatlas.current_sector?.lore_radio_stations) - var/picked_station = tgui_input_list(user, "Select the radio frequency.", "Radio Station Selection", SSatlas.current_sector.lore_radio_stations, current_station) + var/picked_station = tgui_input_list(user, "Select the radio frequency:", "Radio Station Selection", SSatlas.current_sector.lore_radio_stations, current_station) if(picked_station) current_station = picked_station if(!receiving) @@ -52,7 +52,7 @@ if(!receiving || radio_station != current_station) return - var/displayed_message = radio_message ? "[src.name] transmits, \"[radio_message]\"" : "[src] only emits white noise..." + var/displayed_message = radio_message ? "\The [src.name] transmits, \"[radio_message]\"" : "\The [src] only emits white noise..." audible_message(displayed_message) if(radio_message) var/list/hearers = get_hearers_in_view(7, src) diff --git a/html/changelogs/SleepyGemmy-analog_radio_fix.yml b/html/changelogs/SleepyGemmy-analog_radio_fix.yml new file mode 100644 index 00000000000..7c6b9c6d647 --- /dev/null +++ b/html/changelogs/SleepyGemmy-analog_radio_fix.yml @@ -0,0 +1,6 @@ +author: SleepyGemmy + +delete-after: True + +changes: + - bugfix: "Fixed the analog lore radio missing a prefix."