From 8bfbf74c1600816626c0dd6d16ef670e1c261b67 Mon Sep 17 00:00:00 2001 From: PollardTheDragon <144391971+PollardTheDragon@users.noreply.github.com> Date: Wed, 17 Sep 2025 23:39:57 -0400 Subject: [PATCH] Fixes node cable amounts (#30477) --- code/game/machinery/ai_resource.dm | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/code/game/machinery/ai_resource.dm b/code/game/machinery/ai_resource.dm index 591a22f856a..3dc3aa9dbfa 100644 --- a/code/game/machinery/ai_resource.dm +++ b/code/game/machinery/ai_resource.dm @@ -231,8 +231,7 @@ GLOBAL_LIST_EMPTY(ai_nodes) component_parts += new /obj/item/stock_parts/capacitor(null) component_parts += new /obj/item/stack/sheet/mineral/gold(null) component_parts += new /obj/item/stack/sheet/mineral/silver(null) - for(var/i in 1 to 5) - component_parts += new /obj/item/stack/cable_coil(null) + component_parts += new /obj/item/stack/cable_coil(null, 5) component_parts += new /obj/item/stack/sheet/mineral/diamond(null) RefreshParts() @@ -258,8 +257,7 @@ GLOBAL_LIST_EMPTY(ai_nodes) component_parts += new /obj/item/stock_parts/capacitor(null) component_parts += new /obj/item/stack/sheet/mineral/gold(null) component_parts += new /obj/item/stack/sheet/mineral/silver(null) - for(var/i in 1 to 5) - component_parts += new /obj/item/stack/cable_coil(null) + component_parts += new /obj/item/stack/cable_coil(null, 5) component_parts += new /obj/item/stack/sheet/mineral/diamond(null) RefreshParts()