From 768c375745b75640557fbda9e8d3285c443148c7 Mon Sep 17 00:00:00 2001 From: Dmitry Date: Sat, 13 Jan 2024 10:57:58 +0700 Subject: [PATCH] fix empty tag --- kubejs/server_scripts/gregtech/loot.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/kubejs/server_scripts/gregtech/loot.js b/kubejs/server_scripts/gregtech/loot.js index c119af447..c850b3726 100644 --- a/kubejs/server_scripts/gregtech/loot.js +++ b/kubejs/server_scripts/gregtech/loot.js @@ -8,9 +8,9 @@ const registerGTCEULoots = (event) => { event.addBlockLootModifier(`gtceu:${stoneType}_${material}_ore`) .removeLoot(Ingredient.all) .addWeightedLoot([ - Item.of(`#forge:rich_raw_materials/${material}`).withChance(0.2), - Item.of(`#forge:raw_materials/${material}`).withChance(0.6), - Item.of(`#forge:poor_raw_materials/${material}`).withChance(0.2) + ChemicalHelper.get(TFGTagPrefix.richRawOre, material, 1).withChance(0.2), + ChemicalHelper.get(TagPrefix.rawOre, material, 1).withChance(0.6), + ChemicalHelper.get(TFGTagPrefix.poorRawOre, material, 1).withChance(0.2) ]); } })