From 93febcac9042c3ab01755e0bf3ed9f0859ec0d4c Mon Sep 17 00:00:00 2001 From: Wuzzy Date: Tue, 7 Feb 2017 02:19:25 +0100 Subject: [PATCH] Define shulker_box group --- API.md | 1 + mods/mcl_craftguide/init.lua | 1 + 2 files changed, 2 insertions(+) diff --git a/API.md b/API.md index b5f57a35f..dd5068d16 100644 --- a/API.md +++ b/API.md @@ -35,6 +35,7 @@ This section explains all the used groups in this subgame. * `redsandstone=1`: Red sandstone and related nodes (chiseled and the like) (only full blocks) * `quartz_block=1`: Quartz Block and variants (chiseled, pillar, etc.) (only full blocks) * `stonebrick=1`: Stone Bricks and related nodes (only full blocks) +* `shulker_box=1`: Block is a shulker box * `tree=1`: Oak Wood, Birch Wood, etc. (tree trunks) * `wood=1`: Oak Wood Planks, Birch Wood Planks, etc. (only full blocks) * `wood_slab=1`: Slabs made out of a kind of wooden planks diff --git a/mods/mcl_craftguide/init.lua b/mods/mcl_craftguide/init.lua index fb3a4a475..4a0388aa0 100644 --- a/mods/mcl_craftguide/init.lua +++ b/mods/mcl_craftguide/init.lua @@ -21,6 +21,7 @@ local group_stereotypes = { wood_slab = "stairs:slab_wood", wood_stairs = "stairs:stairs_wood", coal = "mcl_core:coal_lump", + shulker_box = "mcl_chests:violet_shulker_box", mesecon_conductor_craftable = "mesecons:wire_00000000_off", }