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

15 lines
437 B
Lua

remote.add_interface(
"blueprint-sandboxes",
{
space_exploration_delete_surface = function(event)
local surface = game.surfaces[event.surface_index]
if SpaceExploration.IsSandbox(surface) then
return {
allow_delete = false,
message = {"bpsb-messages.space-exploration-delete-sandbox"},
}
end
end,
}
)