version 0.21
This commit is contained in:
parent
bd1233aaf1
commit
c8d70b992c
1717 changed files with 68882 additions and 0 deletions
1
mods/redstone/mesecons_extrawires/depends.txt
Normal file
1
mods/redstone/mesecons_extrawires/depends.txt
Normal file
|
@ -0,0 +1 @@
|
|||
mesecons
|
3
mods/redstone/mesecons_extrawires/init.lua
Normal file
3
mods/redstone/mesecons_extrawires/init.lua
Normal file
|
@ -0,0 +1,3 @@
|
|||
-- dofile(minetest.get_modpath("mesecons_extrawires").."/crossing.lua");
|
||||
-- The crossing code is not active right now because it is hard to maintain
|
||||
dofile(minetest.get_modpath("mesecons_extrawires").."/mesewire.lua");
|
9
mods/redstone/mesecons_extrawires/mesewire.lua
Normal file
9
mods/redstone/mesecons_extrawires/mesewire.lua
Normal file
|
@ -0,0 +1,9 @@
|
|||
local mesewire_rules =
|
||||
{
|
||||
{x = 1, y = 0, z = 0},
|
||||
{x =-1, y = 0, z = 0},
|
||||
{x = 0, y = 1, z = 0},
|
||||
{x = 0, y =-1, z = 0},
|
||||
{x = 0, y = 0, z = 1},
|
||||
{x = 0, y = 0, z =-1},
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue