Certain items can now be used as fuel in the furnace

This commit is contained in:
Sollace 2022-09-18 21:45:56 +02:00
parent 33d4233866
commit c2db33c8df

View file

@ -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();