75e66075d0
make the wrapper `blockgame.register_node` make reasonable assumptions that make node registration more convenient. change other code to take advantage of that change. also remove the `blockgame.reg_simple_node` utility since it's now redundant.
11 lines
137 B
Lua
11 lines
137 B
Lua
blockgame.register_node("bricks", {
|
|
groups = {
|
|
stoney = 1,
|
|
},
|
|
})
|
|
|
|
blockgame.register_node("tile", {
|
|
groups = {
|
|
stoney = 1,
|
|
},
|
|
})
|