This commit is contained in:
Brevven 2025-01-13 23:26:46 -08:00
parent b31fc70f75
commit 64d6a00a9b
2 changed files with 305 additions and 10 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