mirror of
https://github.com/sbrl/Minetest-WorldEditAdditions.git
synced 2024-11-22 07:23: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 parse = dofile(worldeditadditions.modpath.."/utils/parse/axes.lua")
|
||||
local key_instance = dofile(worldeditadditions.modpath.."/utils/parse/key_instance.lua")
|
||||
|
||||
worldeditadditions.parse = {
|
||||
axes = axes.parse_axes,
|
||||
axis_name = axes.parse_axis_name
|
||||
}
|
||||
worldeditadditions.key_instance = key_instance
|
||||
worldeditadditions.parse = parse
|
||||
|
||||
-- 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/map.lua")
|
||||
|
|
Loading…
Reference in a new issue