Aleksei-bird 7c9c708c92 Первый фикс
Пачки некоторых позиций увеличены
2024-03-01 20:54:33 +03:00

8 lines
293 B
Lua

-- remove all blue markers
for __,surface in pairs(game.surfaces) do
for __,marker in pairs(surface.find_entities_filtered{ name = "distribution-marker" }) do
if marker and marker.valid then marker.destroy() end
end
end
log("Even Distribution: All distribution markers have been removed")