Fixes node cable amounts (#30477)

This commit is contained in:
PollardTheDragon
2025-09-17 23:39:57 -04:00
committed by GitHub
parent d4ba4e9e10
commit 8bfbf74c16
+2 -4
View File
@@ -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()