mirror of
https://github.com/minetest-mods/digilines.git
synced 2024-11-12 21:30:29 +01:00
16 lines
280 B
Lua
16 lines
280 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}}
|