* schematic rotation * fixes * remove auto-rotation code * schematic encoding v2 * testing * working encode/decode * rotate schematic * spec * rotate dialog * skip if rotation == 0 * wip * wip * wip * fix order * fix metadata rotation --------- Co-authored-by: BuckarooBanzay <BuckarooBanzay@users.noreply.github.com>
19 lines
252 B
Lua
19 lines
252 B
Lua
globals = {
|
|
"pick_and_place"
|
|
}
|
|
|
|
read_globals = {
|
|
-- Stdlib
|
|
string = {fields = {"split", "trim"}},
|
|
table = {fields = {"copy", "getn"}},
|
|
|
|
-- Minetest
|
|
"vector", "ItemStack",
|
|
"dump", "dump2",
|
|
"VoxelArea",
|
|
"minetest",
|
|
|
|
-- mods
|
|
"mapsync", "mtt"
|
|
}
|