removed world.lua - concept changed

This commit is contained in:
Alexander Weber 2017-07-10 21:35:26 +02:00
parent d7a07073df
commit 86cda37e18
2 changed files with 0 additions and 9 deletions

View File

@ -9,7 +9,6 @@ schemlib.mapping = dofile(modpath.."/mapping.lua")
schemlib.worldedit_file = dofile(modpath.."/worldedit_file.lua")
schemlib.save_restore = dofile(modpath.."/save_restore.lua")
schemlib.schematics = dofile(modpath.."/schematics.lua")
schemlib.world = dofile(modpath.."/world.lua")
schemlib.plan = dofile(modpath.."/plan.lua")
schemlib.npc_ai = dofile(modpath.."/npc_ai.lua")

View File

@ -1,8 +0,0 @@
--[[
Class "world"
- propose_y(world_pos)
- plan_is_placeble(world_pos) - Plan is placeble to the position
-- including check if an other plan in this area
-- including check for is_ground_content ~= false in this area (nil is like true)
]]