fixed a dupe with certus quartz

This commit is contained in:
Pyritie
2025-08-13 22:33:28 +01:00
parent af5e279954
commit 8657cc38b1
2 changed files with 2 additions and 1 deletions

View File

@@ -13,6 +13,7 @@
- Fixed duplicate mixer recipes for rose gold and sterling silver @Pyritie
- Fixed mechanical mixers requiring an alloy that needed that tier of mixer @Pyritie
- Finally fixed all the issues with upgrading the toolbelt - now you can safely dye and undye, upgrade with and without tools inside it, etc (#368) @Pyritie
- Fixed a dupe with certus quartz @Pyritie
## [0.10.9] - 10-08-2025
### Changes

View File

@@ -775,7 +775,7 @@ function registerGTCEUMetalRecipes(event) {
.id(`shapeless/mortar_chipped_${material.getName()}`)
let amount = 9;
if (material === GTMaterials.NetherQuartz || material === GTMaterials.Amethyst)
if (material === GTMaterials.NetherQuartz || material === GTMaterials.CertusQuartz || material === GTMaterials.Amethyst)
amount = 4;
event.recipes.greate.pressing(ChemicalHelper.get(TagPrefix.gem, material, amount), ChemicalHelper.get(TagPrefix.block, material, 1))