mylandscaping/concrete.lua

9 lines
257 B
Lua
Raw Normal View History

2019-02-16 14:47:56 -08:00
minetest.register_node('mylandscaping:concrete', {
description = 'Concrete',
tiles = {'mylandscaping_cement.png'},
groups = {cracky=1, ml=1},
sounds = default.node_sound_stone_defaults(),
2015-04-27 10:31:29 -07:00
})
2019-02-16 14:47:56 -08:00
--THIS NEEDS TO BE CRAFTABLE. Right now it has ZERO purpose.