diff --git a/_map_handler/map_create.lua b/_map_handler/map_create.lua deleted file mode 100644 index fdb0049..0000000 --- a/_map_handler/map_create.lua +++ /dev/null @@ -1,8 +0,0 @@ --- Creates the schematic using pos1 (the first corner of the map) and pos2 (the second one) -function skywars.create_schematic(sender, pos1, pos2, name, arena) - minetest.create_schematic(pos1, pos2, nil, minetest.get_worldpath() .. "/" .. name .. ".mts", nil) - arena.schematic = minetest.get_worldpath() .. "/" .. name .. ".mts" - - arena_lib.change_arena_property(sender, "skywars", arena.name, "pos1", pos1) - arena_lib.change_arena_property(sender, "skywars", arena.name, "schematic", arena.schematic) -end