From 5a7356585aa59f1a6e315c1656f94a554d2464a9 Mon Sep 17 00:00:00 2001 From: Integer Limit <103940576+IntegerLimit@users.noreply.github.com> Date: Thu, 1 Aug 2024 20:14:48 +1000 Subject: [PATCH] Fix Glowstone Decomposition Recipe (#847) [BUG] --- .../Post-Initial/Main/General/Misc/materialChanges.groovy | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/overrides/groovy/postInit/Post-Initial/Main/General/Misc/materialChanges.groovy b/overrides/groovy/postInit/Post-Initial/Main/General/Misc/materialChanges.groovy index fd46675..4534354 100644 --- a/overrides/groovy/postInit/Post-Initial/Main/General/Misc/materialChanges.groovy +++ b/overrides/groovy/postInit/Post-Initial/Main/General/Misc/materialChanges.groovy @@ -15,6 +15,13 @@ material('rhodium_plated_palladium') .changeChemicalFormula() .change() +material('glowstone') + .changeComposition() + .setComponents([metaitem('dustGold'), metaitem('dustTricalciumPhosphate')]) + .changeDecompositionRecipes() + .changeChemicalFormula() + .change() + /* Black Steel */ // Can't use change composition to remove, as that is only performed at the end of running scripts, and if not removed, conflicts will occur.