Swap redstone for dilithium gems in advanced upgrade recipes

This commit is contained in:
DBotThePony 2025-02-12 11:23:35 +07:00
parent 4c04c6c114
commit 6acee0de08
Signed by: DBot
GPG Key ID: DCC23B5715498507

View File

@ -19,9 +19,9 @@ private fun makeNormalRecipe(element: Item, result: Item): MatteryRecipe {
private fun makeAdvancedRecipe(element: Item, result: Item): MatteryRecipe {
return MatteryRecipe(result, 1)
.row(MItemTags.GOLD_WIRES, Items.REDSTONE, MItemTags.GOLD_WIRES)
.row(MItemTags.GOLD_WIRES, MItemTags.DILITHIUM_GEMS, MItemTags.GOLD_WIRES)
.row(MItemTags.TRITANIUM_PLATES, element, MItemTags.TRITANIUM_PLATES)
.row(MItems.ELECTRIC_PARTS, Items.REDSTONE, MItems.ELECTRIC_PARTS)
.row(MItems.ELECTRIC_PARTS, MItemTags.DILITHIUM_GEMS, MItems.ELECTRIC_PARTS)
.unlockedBy(MItemTags.TRITANIUM_PLATES)
.unlockedBy(MItems.ELECTRIC_PARTS)
.unlockedBy(element)