From c2db33c8dfc38ff1e35a704f97a001fcdbea5ad0 Mon Sep 17 00:00:00 2001 From: Sollace Date: Sun, 18 Sep 2022 21:45:56 +0200 Subject: [PATCH] Certain items can now be used as fuel in the furnace --- src/main/java/com/minelittlepony/unicopia/item/UItems.java | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/main/java/com/minelittlepony/unicopia/item/UItems.java b/src/main/java/com/minelittlepony/unicopia/item/UItems.java index a7486180..fbfdae8e 100644 --- a/src/main/java/com/minelittlepony/unicopia/item/UItems.java +++ b/src/main/java/com/minelittlepony/unicopia/item/UItems.java @@ -119,6 +119,11 @@ public interface UItems { static void bootstrap() { AppleItem.registerTickCallback(Items.APPLE); + FuelRegistry.INSTANCE.add(WOODEN_POLEARM, 200); + FuelRegistry.INSTANCE.add(MUG, 250); + FuelRegistry.INSTANCE.add(DRAGON_BREATH_SCROLL, 20000); + FuelRegistry.INSTANCE.add(BUTTERFLY, 2); + FuelRegistry.INSTANCE.add(SPELLBOOK, 9000); UEnchantments.bootstrap(); URecipes.bootstrap();