Massive rework of creative inventory categories

This commit is contained in:
Wuzzy 2017-01-20 04:54:09 +01:00
parent 1275af7903
commit dd1fa65f9e
41 changed files with 278 additions and 202 deletions

View file

@ -24,7 +24,7 @@ minetest.register_node("hardened_clay:hardened_clay", {
description = "Hardened Clay",
tiles = {"hardened_clay.png"},
stack_max = 64,
groups = {cracky=3},
groups = {cracky=3,hardened_clay=1,building_block=1},
sounds = default.node_sound_stone_defaults(),
})
@ -44,7 +44,7 @@ for _, row in ipairs(clay.dyes) do
minetest.register_node("hardened_clay:"..name, {
description = desc.." Hardened Clay",
tiles = {"hardened_clay_stained_"..name..".png"},
groups = {cracky=3,hardened_clay=1},
groups = {cracky=3,hardened_clay=1,building_block=1},
stack_max = 64,
sounds = default.node_sound_stone_defaults(),
})