From 25b396affcbed7ceec38668b7aa81ab014cef6fc Mon Sep 17 00:00:00 2001 From: Simon Brodtmann Date: Wed, 10 Sep 2025 23:12:06 +0200 Subject: [PATCH] Fix more item weights --- lignumis/prototypes/content/gold/pipes.lua | 7 ++++++- lignumis/prototypes/integrations/vanilla.lua | 6 +++++- 2 files changed, 11 insertions(+), 2 deletions(-) diff --git a/lignumis/prototypes/content/gold/pipes.lua b/lignumis/prototypes/content/gold/pipes.lua index 4e555a4..766a788 100644 --- a/lignumis/prototypes/content/gold/pipes.lua +++ b/lignumis/prototypes/content/gold/pipes.lua @@ -84,6 +84,7 @@ local pipe_item = { place_result = "gold-pipe", stack_size = 100, weight = 5 * kg, + default_import_location = "lignumis", random_tint_color = item_tints.iron_rust } @@ -159,6 +160,8 @@ local pipe_to_ground_item = { drop_sound = item_sounds.metal_small_inventory_move, place_result = "gold-pipe-to-ground", stack_size = 50, + weight = 5 * kg, + default_import_location = "lignumis", random_tint_color = item_tints.iron_rust } @@ -347,7 +350,9 @@ local tank_item = { pick_sound = item_sounds.metal_large_inventory_pickup, drop_sound = item_sounds.metal_large_inventory_move, place_result = "gold-storage-tank", - stack_size = 10 + stack_size = 10, + weight = 50 * kg, + default_import_location = "lignumis" } local tank_recipe = { diff --git a/lignumis/prototypes/integrations/vanilla.lua b/lignumis/prototypes/integrations/vanilla.lua index ac6dd49..1e27aaa 100644 --- a/lignumis/prototypes/integrations/vanilla.lua +++ b/lignumis/prototypes/integrations/vanilla.lua @@ -359,4 +359,8 @@ set_default_weight("oil-refinery", 10) set_default_weight("accumulator", 50) set_default_weight("steam-engine", 10) set_default_weight("substation", 50) -set_default_weight("radar", 50) \ No newline at end of file +set_default_weight("radar", 50) +set_default_weight("storage-tank", 50) +set_default_weight("fast-transport-belt", 100) +set_default_weight("fast-underground-belt", 50) +set_default_weight("fast-splitter", 50) \ No newline at end of file