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()