From deb0f6167140625d7997a88fdb15bab12d78d15f Mon Sep 17 00:00:00 2001 From: KTrain <69028025+KTrain5169@users.noreply.github.com> Date: Wed, 10 Apr 2024 13:08:24 +1000 Subject: Fix Nether Brick item and Nether Brick block issues. (#1147) * Update NETHER_BRICK.json Adds the recipe of the Nether Brick (block) * Update NETHER_BRICK.json with extra info Added internal name, vanilla tag, and click command. * Update NETHER_BRICK_ITEM.json This may or may not work, testing * Reverted commit b62d750 * Reverted commit b30b870 Accidentally caused crashes with it because, unsurprisingly, the item didn't exist. * Update NETHER_BRICK_ITEM to have its own, separate (correct) texture from the Nether Brick (block) * Update NETHER_BRICK_ITEM to no longer have viewrecipe ran on left click (it didn't have a proper recipe besides furnace) * Fixed missing s in the name * Fixed missing s in the name pt 2 * Added amount of bricks available in recipe output * Fixed a bug that possibly caused it to not appear --- items/NETHER_BRICK.json | 16 +++++++++------- items/NETHER_BRICK_ITEM.json | 15 ++------------- 2 files changed, 11 insertions(+), 20 deletions(-) (limited to 'items') diff --git a/items/NETHER_BRICK.json b/items/NETHER_BRICK.json index dbd6ba76..eb3acda5 100644 --- a/items/NETHER_BRICK.json +++ b/items/NETHER_BRICK.json @@ -1,7 +1,7 @@ { "itemid": "minecraft:nether_brick", - "displayname": "§fNether Brick", - "nbttag": "{HideFlags:254,display:{Lore:[0:\"§f§lCOMMON\"],Name:\"§fNether Brick\"},ExtraAttributes:{id:\"NETHER_BRICK\"}}", + "displayname": "§fNether Bricks", + "nbttag": "{HideFlags:254,display:{Lore:[0:\"§f§lCOMMON\"],Name:\"§fNether Bricks\"},ExtraAttributes:{id:\"NETHER_BRICK\"}}", "damage": 0, "lore": [ "§f§lCOMMON" @@ -11,14 +11,16 @@ "vanilla": true, "clickcommand": "viewrecipe", "recipe": { - "A1": "", - "A2": "", + "A1": "NETHER_BRICK_ITEM:1", + "A2": "NETHER_BRICK_ITEM:1", "A3": "", - "B1": "", - "B2": "", + "B1": "NETHER_BRICK_ITEM:1", + "B2": "NETHER_BRICK_ITEM:1", "B3": "", "C1": "", "C2": "", - "C3": "" + "C3": "", + "count": "1" } + } diff --git a/items/NETHER_BRICK_ITEM.json b/items/NETHER_BRICK_ITEM.json index c4ca26ab..6f26797b 100644 --- a/items/NETHER_BRICK_ITEM.json +++ b/items/NETHER_BRICK_ITEM.json @@ -1,5 +1,5 @@ { - "itemid": "minecraft:nether_brick", + "itemid": "minecraft:netherbrick", "displayname": "§fNether Brick", "nbttag": "{HideFlags:254,display:{Lore:[0:\"§f§lCOMMON\"],Name:\"§fNether Brick\"},ExtraAttributes:{id:\"NETHER_BRICK_ITEM\"}}", "damage": 0, @@ -9,16 +9,5 @@ "internalname": "NETHER_BRICK_ITEM", "modver": "1.3-REL", "vanilla": true, - "clickcommand": "viewrecipe", - "recipe": { - "A1": "", - "A2": "", - "A3": "", - "B1": "", - "B2": "", - "B3": "", - "C1": "", - "C2": "", - "C3": "" - } + "clickcommand": "" } -- cgit