From 4df8079847e1112f6e130dccfa90562cec239d75 Mon Sep 17 00:00:00 2001 From: MuteTiefling Date: Mon, 9 Sep 2024 11:01:47 -0400 Subject: [PATCH 1/2] mallet --- changelogs/CHANGELOG.md | 1 + .../ftbquests/quests/chapters/chapter_one.snbt | 17 +++-------------- .../expert/recipes/naturesaura/altar.js | 2 +- 3 files changed, 5 insertions(+), 15 deletions(-) diff --git a/changelogs/CHANGELOG.md b/changelogs/CHANGELOG.md index 52a612abc..982db54ed 100644 --- a/changelogs/CHANGELOG.md +++ b/changelogs/CHANGELOG.md @@ -6,6 +6,7 @@ - [Expert] New Tree of Life structure, courtesy of Gefailter (credit: [gefailter ](https://github.com/gefailter)) [\#981](https://github.com/EnigmaticaModpacks/Enigmatica9/issues/981) - [Expert] Cave Trolls no longer drop Magic Beans. They're only found in the Obsidian Vaults now. [\#981](https://github.com/EnigmaticaModpacks/Enigmatica9/issues/981) - Steel Plates are no longer auto rewarded [\#981](https://github.com/EnigmaticaModpacks/Enigmatica9/issues/981) +- [Expert] Golden Mallet is now unbreakable. [\#981](https://github.com/EnigmaticaModpacks/Enigmatica9/issues/981) ### 🐛 Fixed Bugs diff --git a/config/ftbquests/quests/chapters/chapter_one.snbt b/config/ftbquests/quests/chapters/chapter_one.snbt index af25205bb..c0b249715 100644 --- a/config/ftbquests/quests/chapters/chapter_one.snbt +++ b/config/ftbquests/quests/chapters/chapter_one.snbt @@ -2690,24 +2690,13 @@ ] id: "00FB8D9041ED6D73" rewards: [{ - id: "4C3A6668078E18B6" + id: "767B408789000894" item: { Count: 1b - id: "nomadictents:mallet" + id: "nomadictents:golden_mallet" tag: { Damage: 0 - Enchantments: [{ - id: "minecraft:unbreaking" - lvl: 3s - }] - display: { - Name: "{\"text\":\"Sturdy Tent Mallet\"}" - } - "quark:RuneAttached": 1b - "quark:RuneColor": { - Count: 1b - id: "quark:blank_rune" - } + Unbreakable: 1.0d } } type: "item" diff --git a/kubejs/server_scripts/expert/recipes/naturesaura/altar.js b/kubejs/server_scripts/expert/recipes/naturesaura/altar.js index 0a239ddcb..c84a683f0 100644 --- a/kubejs/server_scripts/expert/recipes/naturesaura/altar.js +++ b/kubejs/server_scripts/expert/recipes/naturesaura/altar.js @@ -21,7 +21,7 @@ ServerEvents.recipes((event) => { id: 'naturesaura:altar/infused_iron_block' }, { - output: 'nomadictents:golden_mallet', + output: Item.of('nomadictents:golden_mallet', { Damage: 0, Unbreakable: 1 }), input: 'nomadictents:mallet', aura: 500000, time: 1800, From 51814daeda2bbda302f9338a3c691cd3e7283bb4 Mon Sep 17 00:00:00 2001 From: MuteTiefling Date: Mon, 9 Sep 2024 11:03:15 -0400 Subject: [PATCH 2/2] Update CHANGELOG.md --- changelogs/CHANGELOG.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/changelogs/CHANGELOG.md b/changelogs/CHANGELOG.md index 982db54ed..3bf9632be 100644 --- a/changelogs/CHANGELOG.md +++ b/changelogs/CHANGELOG.md @@ -6,7 +6,7 @@ - [Expert] New Tree of Life structure, courtesy of Gefailter (credit: [gefailter ](https://github.com/gefailter)) [\#981](https://github.com/EnigmaticaModpacks/Enigmatica9/issues/981) - [Expert] Cave Trolls no longer drop Magic Beans. They're only found in the Obsidian Vaults now. [\#981](https://github.com/EnigmaticaModpacks/Enigmatica9/issues/981) - Steel Plates are no longer auto rewarded [\#981](https://github.com/EnigmaticaModpacks/Enigmatica9/issues/981) -- [Expert] Golden Mallet is now unbreakable. [\#981](https://github.com/EnigmaticaModpacks/Enigmatica9/issues/981) +- [Expert] Golden Mallet is now unbreakable. [\#1006](https://github.com/EnigmaticaModpacks/Enigmatica9/issues/1006) ### 🐛 Fixed Bugs