aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKTrain <69028025+KTrain5169@users.noreply.github.com>2024-04-10 13:08:24 +1000
committerGitHub <noreply@github.com>2024-04-10 03:08:24 +0000
commitdeb0f6167140625d7997a88fdb15bab12d78d15f (patch)
treec4f3695d5be5860c866d57700025cba815a37ea5
parent1ab486bde9a157639ccd3b17dda7e198c93de597 (diff)
downloadNotEnoughUpdates-REPO-deb0f6167140625d7997a88fdb15bab12d78d15f.tar.gz
NotEnoughUpdates-REPO-deb0f6167140625d7997a88fdb15bab12d78d15f.tar.bz2
NotEnoughUpdates-REPO-deb0f6167140625d7997a88fdb15bab12d78d15f.zip
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
-rw-r--r--items/NETHER_BRICK.json16
-rw-r--r--items/NETHER_BRICK_ITEM.json15
2 files changed, 11 insertions, 20 deletions
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": ""
}