From 4e37c5a151b599459f266364ce23716280fda243 Mon Sep 17 00:00:00 2001 From: Dmitry Date: Sun, 7 Jan 2024 12:42:38 +0700 Subject: [PATCH] Fix #167 --- 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 8bc9356da..c119af447 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(`gtceu:rich_raw_${material}`).withChance(20), - Item.of(`gtceu:raw_${material}`).withChance(60), - Item.of(`gtceu:poor_raw_${material}`).withChance(20) + 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) ]); } })