forked from minetest-mods/worldedge
Use config setting 'world_edge' to determine size of world:
Defaults to '30000' if setting not found.
This commit is contained in:
2
init.lua
2
init.lua
@ -2,7 +2,7 @@
|
|||||||
-- TODO: Check for terrain height
|
-- TODO: Check for terrain height
|
||||||
|
|
||||||
-- Defines the edge of a world
|
-- Defines the edge of a world
|
||||||
local edge = 30000
|
local edge = tonumber(minetest.settings:get("world_edge")) or 30000
|
||||||
-- Radius which should be checked for a good teleportation place
|
-- Radius which should be checked for a good teleportation place
|
||||||
local radius = 2
|
local radius = 2
|
||||||
--------------
|
--------------
|
||||||
|
Reference in New Issue
Block a user