From 47aa60422083c0da0b094e59b97db270a09ee33d Mon Sep 17 00:00:00 2001 From: copygirl Date: Tue, 19 Jul 2022 00:16:24 +0200 Subject: [PATCH] Brewing glacier ice tea requires arctic fur --- kubejs/server_scripts/recipes/kettle_brewing.js | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/kubejs/server_scripts/recipes/kettle_brewing.js b/kubejs/server_scripts/recipes/kettle_brewing.js index 49e2197..11c35b7 100644 --- a/kubejs/server_scripts/recipes/kettle_brewing.js +++ b/kubejs/server_scripts/recipes/kettle_brewing.js @@ -24,12 +24,12 @@ onEvent("recipes", event => { event.remove({ output: "twilightdelight:phytochemical_juice" }); event.remove({ output: "twilightdelight:tear_drink" }); event.remove({ output: "twilightdelight:glacier_ice_tea" }); - brewing("twilightdelight:thorn_rose_tea" , [ "twilightforest:thorn_rose" , "minecraft:sugar" ]); - brewing("twilightdelight:torchberry_juice" , [ "twilightforest:torchberries" , "minecraft:sugar" ]); - brewing("twilightdelight:twilight_spring" , [ "twilightforest:raw_ironwood" , "minecraft:ice" ], { needwater: false }); - brewing("twilightdelight:phytochemical_juice", [ "twilightforest:steeleaf_ingot", "twilightforest:liveroot" ]); - brewing("twilightdelight:tear_drink" , [ "twilightforest:fiery_tears" , "minecraft:ghast_tear" ]); - brewing("twilightdelight:glacier_ice_tea" , [ "twilightforest:ice_bomb" , "minecraft:ice" ], { needwater: false }); + brewing("twilightdelight:thorn_rose_tea" , [ "twilightforest:thorn_rose" , "minecraft:sugar" ]); + brewing("twilightdelight:torchberry_juice" , [ "twilightforest:torchberries" , "minecraft:sugar" ]); + brewing("twilightdelight:twilight_spring" , [ "twilightforest:raw_ironwood" , "minecraft:ice" ], { needwater: false }); + brewing("twilightdelight:phytochemical_juice", [ "twilightforest:steeleaf_ingot", "twilightforest:liveroot" ]); + brewing("twilightdelight:tear_drink" , [ "twilightforest:fiery_tears" , "minecraft:ghast_tear" ]); + brewing("twilightdelight:glacier_ice_tea" , [ "twilightforest:ice_bomb" , "twilightforest:arctic_fur" ]); // Corn Delight event.remove({ output: "corn_delight:creamy_corn_drink" });