9 lines
257 B
Lua
9 lines
257 B
Lua
|
minetest.register_node('mylandscaping:concrete', {
|
||
|
description = 'Concrete',
|
||
|
tiles = {'mylandscaping_cement.png'},
|
||
|
groups = {cracky=1, ml=1},
|
||
|
sounds = default.node_sound_stone_defaults(),
|
||
|
})
|
||
|
|
||
|
--THIS NEEDS TO BE CRAFTABLE. Right now it has ZERO purpose.
|