This commit is contained in:
Brevven 2025-01-24 16:21:38 -08:00
parent a94931bb70
commit 85cea40749
2 changed files with 325 additions and 16 deletions

View file

@ -147,8 +147,10 @@ function regenerate_ore(event)
for w in event.parameters:gmatch("%S+") do table.insert(params, w) end
if #params == 1 and params[1] == "all" then
for _, resource in pairs(me.resources) do
game.print("Regenerating "..resource)
game.regenerate_entity(resource)
if prototypes.entity[resource] then
game.print("Regenerating "..resource)
game.regenerate_entity(resource)
end
end
return
end