blockgame/mods/bg_stoneworking/node.lua
trans_soup 75e66075d0 simplify node registration.
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.
2023-10-17 20:20:42 +02:00

11 lines
137 B
Lua

blockgame.register_node("bricks", {
groups = {
stoney = 1,
},
})
blockgame.register_node("tile", {
groups = {
stoney = 1,
},
})