mirror of
https://github.com/minetest-mods/digilines.git
synced 2024-11-12 21:30:29 +01:00
6a2fa5a3e4
This also adds a backwards compat alias so other mods shouldn't break.
16 lines
281 B
Lua
16 lines
281 B
Lua
digilines.rules = {}
|
|
|
|
digilines.rules.default =
|
|
{{x=0, y=0, z=-1},
|
|
{x=1, y=0, z=0},
|
|
{x=-1, y=0, z=0},
|
|
{x=0, y=0, z=1},
|
|
{x=1, y=1, z=0},
|
|
{x=1, y=-1, z=0},
|
|
{x=-1, y=1, z=0},
|
|
{x=-1, y=-1, z=0},
|
|
{x=0, y=1, z=1},
|
|
{x=0, y=-1, z=1},
|
|
{x=0, y=1, z=-1},
|
|
{x=0, y=-1, z=-1}}
|