initial commit

This commit is contained in:
2025-12-30 10:38:38 +01:00
commit 0746b8771c
3 changed files with 17 additions and 0 deletions

5
data-updates.lua Normal file
View File

@@ -0,0 +1,5 @@
for _, item in pairs(data.raw.item) do
if item.name:match("%-barrel$") then -- Matches "water-barrel", "crude-oil-barrel", etc.
item.weight = 1 * kg
end
end