From 83dfafb8c943f0cd4e12105e400d3b64a795a943 Mon Sep 17 00:00:00 2001 From: VMSolidus Date: Sun, 30 Nov 2025 06:16:53 -0500 Subject: [PATCH] Generic IPC Creation (#21614) Since the unbranded IPC frame is not canonical and isn't intended to exist anywhere, this PR makes it so that when you create a new IPC as a machinist, the IPC will default to a Baseline frame rather than an Unbranded frame. --- code/modules/mob/living/silicon/robot/items/robot_parts.dm | 2 +- html/changelogs/hellfirejag.yml | 4 ++++ 2 files changed, 5 insertions(+), 1 deletion(-) create mode 100644 html/changelogs/hellfirejag.yml diff --git a/code/modules/mob/living/silicon/robot/items/robot_parts.dm b/code/modules/mob/living/silicon/robot/items/robot_parts.dm index e2f0cd90440..cb1d3ce2ef6 100644 --- a/code/modules/mob/living/silicon/robot/items/robot_parts.dm +++ b/code/modules/mob/living/silicon/robot/items/robot_parts.dm @@ -8,7 +8,7 @@ var/list/part = null // Order of args is important for installing robolimbs. var/sabotaged = 0 //Emagging limbs can have repercussions when installed as prosthetics. var/model_info - var/linked_frame = SPECIES_IPC_UNBRANDED + var/linked_frame = SPECIES_IPC dir = SOUTH /obj/item/robot_parts/set_dir() diff --git a/html/changelogs/hellfirejag.yml b/html/changelogs/hellfirejag.yml new file mode 100644 index 00000000000..c0ab535021c --- /dev/null +++ b/html/changelogs/hellfirejag.yml @@ -0,0 +1,4 @@ +author: Hellfirejag +delete-after: True +changes: + - rscadd: "Creating a new IPC will now default to a baseline frame instead of the deprecated 'unbranded' frame."