Page 1 of 1

How can I make some of my nodes not show up in creative inventory?

PostPosted: Wed Dec 26, 2012 00:19
by Neuromancer
I'm registering a bunch of nodes using register_node and I want some of those nodes to not show up in creative inventory. How do I do that?

PostPosted: Wed Dec 26, 2012 00:31
by Topywo
I think by not using description.

Edit: under minetest.register_node

PostPosted: Wed Dec 26, 2012 00:35
by Neuromancer
Topywo wrote:I think by not using description.
Edit: under minetest.register_node


That worked. Thanks!

PostPosted: Wed Dec 26, 2012 00:45
by Casimir
groups = {not_in_creative_inventory=1},

PostPosted: Wed Dec 26, 2012 01:36
by 0gb.us
Casimir wrote:groups = {not_in_creative_inventory=1},


Yeah, do that instead. You should always have a description.