Page 1 of 1

Node can't be dug

PostPosted: Sat Jun 25, 2016 23:14
by basil60
I followed some tutorial from this forum to create a mod that creates a simple node:
Your phone or window isn't wide enough to display the code box. If it's a phone, try rotating it to landscape mode.
Code: Select all
minetest.register_node('grid:checker',{
tiles={'smear.png'},
group={snappy=1,oddly_breakable_by_hand = 2}})


The only real problems is once dropped, the nodes can't be broken. I don't know why?

Re: Node can't be dug

PostPosted: Sun Jun 26, 2016 02:12
by duane
basil60 wrote:I followed some tutorial from this forum to create a mod that creates a simple node:
Your phone or window isn't wide enough to display the code box. If it's a phone, try rotating it to landscape mode.
Code: Select all
minetest.register_node('grid:checker',{
tiles={'smear.png'},
group={snappy=1,oddly_breakable_by_hand = 2}})


The only real problems is once dropped, the nodes can't be broken. I don't know why?


Change "group" to "groups".

Re: Node can't be dug

PostPosted: Sun Jun 26, 2016 06:09
by basil60
Thanks