From 7fd734ba389f2363d45078ad4d700ee1b9905e9a Mon Sep 17 00:00:00 2001 From: mineymonkey Date: Sun, 16 Aug 2026 16:12:59 +0000 Subject: [PATCH] Electronic Radio Clarity and Actually Updates Storage Capability of IC Printer (#23030) Yeah so I did all but the actual important information on how much phoron and steel that is held in the printer, woops that's my bad. Fixed that. Also added mechanical hints to the examine menu on the electronic radio headset. --- .../core/assemblies/electronic_radio_headset.dm | 5 +++++ code/modules/integrated_electronics/core/printer.dm | 4 ++-- html/changelogs/More circuit fixes by Mineymonkey.yml | 8 ++++++++ 3 files changed, 15 insertions(+), 2 deletions(-) create mode 100644 html/changelogs/More circuit fixes by Mineymonkey.yml diff --git a/code/modules/integrated_electronics/core/assemblies/electronic_radio_headset.dm b/code/modules/integrated_electronics/core/assemblies/electronic_radio_headset.dm index a4c1fcbeae2..ad8e5bc1bd9 100644 --- a/code/modules/integrated_electronics/core/assemblies/electronic_radio_headset.dm +++ b/code/modules/integrated_electronics/core/assemblies/electronic_radio_headset.dm @@ -70,6 +70,11 @@ /obj/item/radio/headset/circuitry/proc/get_clone_host_type() return type +/obj/item/radio/headset/circuitry/mechanics_hints(mob/user, distance, is_adjacent) + . = ..() + . += "Any text-to-speech circuits installed in this device can only be heard by the wearer." + . += "Right-click the headset to access the integrated circuit panel and view or modify the installed circuits." + /obj/item/radio/headset/circuitry/feedback_hints(mob/user, distance, is_adjacent) . = ..() diff --git a/code/modules/integrated_electronics/core/printer.dm b/code/modules/integrated_electronics/core/printer.dm index 050ec62467a..e9c63678e19 100644 --- a/code/modules/integrated_electronics/core/printer.dm +++ b/code/modules/integrated_electronics/core/printer.dm @@ -15,10 +15,10 @@ // Stored phoron amount available for printing. var/phoron = 0 - var/max_phoron = 20 + var/max_phoron = 10 var/phoron_per_sheet = 10 - var/clone_metal_storage_bonus = 400 + var/clone_metal_storage_bonus = 150 var/upgraded = FALSE var/can_clone = FALSE diff --git a/html/changelogs/More circuit fixes by Mineymonkey.yml b/html/changelogs/More circuit fixes by Mineymonkey.yml new file mode 100644 index 00000000000..95d5f5555e1 --- /dev/null +++ b/html/changelogs/More circuit fixes by Mineymonkey.yml @@ -0,0 +1,8 @@ +author: mineymonkey + + +delete-after: True + +changes: + - bugfix: Actually, reduces the maximum amount of metal and phoron that can be stored in a printer from 500 -> 250 and 20 -> 10 respectively. No cloned circuits can hit those numbers, so this is just a safety measure to prevent accidental loss of materials. + - qol: Added in examine hints for the electronic radio headset for clarity in how to access the circuitry portions. Also makes mention that the TTS circuit can only be heard by those wearing the device, it does not broadcast to the room in this specific case.