mirror of
https://github.com/sbrl/Minetest-WorldEditAdditions.git
synced 2024-11-22 15:33:00 +00:00
new parser connected
This commit is contained in:
parent
2cddccdca4
commit
23140467d2
1 changed files with 9 additions and 4 deletions
|
@ -5,11 +5,16 @@
|
||||||
-- ██ ██ ██ ██ ██ ███████ ███████
|
-- ██ ██ ██ ██ ██ ███████ ███████
|
||||||
|
|
||||||
local axes = dofile(worldeditadditions.modpath.."/utils/parse/axes.lua")
|
local axes = dofile(worldeditadditions.modpath.."/utils/parse/axes.lua")
|
||||||
|
local parse = dofile(worldeditadditions.modpath.."/utils/parse/axes.lua")
|
||||||
|
local key_instance = dofile(worldeditadditions.modpath.."/utils/parse/key_instance.lua")
|
||||||
|
|
||||||
worldeditadditions.parse = {
|
worldeditadditions.key_instance = key_instance
|
||||||
axes = axes.parse_axes,
|
worldeditadditions.parse = parse
|
||||||
axis_name = axes.parse_axis_name
|
|
||||||
}
|
-- Old parse functions (depricated).
|
||||||
|
-- Use parse.keytable or parse.keyword instead
|
||||||
|
worldeditadditions.parse.axes = axes.parse_axes
|
||||||
|
worldeditadditions.parse.axis_name = axes.parse_axis_name
|
||||||
|
|
||||||
dofile(worldeditadditions.modpath.."/utils/parse/chance.lua")
|
dofile(worldeditadditions.modpath.."/utils/parse/chance.lua")
|
||||||
dofile(worldeditadditions.modpath.."/utils/parse/map.lua")
|
dofile(worldeditadditions.modpath.."/utils/parse/map.lua")
|
||||||
|
|
Loading…
Reference in a new issue