From ae4997ba9ff3b9f441eb44f6dff446ea7986040d Mon Sep 17 00:00:00 2001 From: Roxy <75404941+TealSeer@users.noreply.github.com> Date: Wed, 23 Apr 2025 17:40:30 -0400 Subject: [PATCH] Fix SAD throwing up circuit board (#3612) ## About The Pull Request `req_components` needs to be an empty list, not null, otherwise it doesn't call parent and the circuitboard doesn't get added to `component_parts`. Also removed the extra (Machine Board) in the name ## Why It's Good For The Game Fixes #3602 ## Proof Of Testing I didddd ## Changelog :cl: fix: fixed SADs spitting out a circuit board when you open them /:cl: --- .../code/self_actualization_device.dm | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/modular_skyrat/modules/self_actualization_device/code/self_actualization_device.dm b/modular_skyrat/modules/self_actualization_device/code/self_actualization_device.dm index b101631b536..fe792415bb4 100644 --- a/modular_skyrat/modules/self_actualization_device/code/self_actualization_device.dm +++ b/modular_skyrat/modules/self_actualization_device/code/self_actualization_device.dm @@ -16,9 +16,10 @@ departmental_flags = DEPARTMENT_BITFLAG_MEDICAL /obj/item/circuitboard/machine/self_actualization_device - name = "Self-Actualization Device (Machine Board)" + name = "Self-Actualization Device" greyscale_colors = CIRCUIT_COLOR_MEDICAL build_path = /obj/machinery/self_actualization_device + req_components = list() /obj/machinery/self_actualization_device name = "Self-Actualization Device"