2021-06-14 20:50:22 +02:00
|
|
|
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
|
|
|
|
From: lukas <lukasalt98@gmail.com>
|
|
|
|
Date: Sun, 27 Dec 2020 16:47:00 +0100
|
|
|
|
Subject: [PATCH] Cache burn durations
|
|
|
|
|
|
|
|
|
|
|
|
diff --git a/src/main/java/net/minecraft/world/level/block/entity/AbstractFurnaceBlockEntity.java b/src/main/java/net/minecraft/world/level/block/entity/AbstractFurnaceBlockEntity.java
|
2021-11-24 18:37:07 +01:00
|
|
|
index fd1fb954ef1eb2624939a5c5d0d2c258d3398ff2..b05019614a172ef071aaefc5fcc1d18627cc0402 100644
|
2021-06-14 20:50:22 +02:00
|
|
|
--- a/src/main/java/net/minecraft/world/level/block/entity/AbstractFurnaceBlockEntity.java
|
|
|
|
+++ b/src/main/java/net/minecraft/world/level/block/entity/AbstractFurnaceBlockEntity.java
|
2021-07-17 03:48:27 +02:00
|
|
|
@@ -127,7 +127,13 @@ public abstract class AbstractFurnaceBlockEntity extends BaseContainerBlockEntit
|
2021-06-14 20:50:22 +02:00
|
|
|
this.recipeType = recipeType;
|
|
|
|
}
|
|
|
|
|
|
|
|
+ private static Map<Item, Integer> cachedBurnDurations = null; // Paper - cache burn durations
|
|
|
|
public static Map<Item, Integer> getFuel() {
|
|
|
|
+ // Paper start - cache burn durations
|
|
|
|
+ if(cachedBurnDurations != null) {
|
|
|
|
+ return cachedBurnDurations;
|
|
|
|
+ }
|
|
|
|
+ // Paper end
|
|
|
|
Map<Item, Integer> map = Maps.newLinkedHashMap();
|
|
|
|
|
|
|
|
AbstractFurnaceBlockEntity.add(map, (ItemLike) Items.LAVA_BUCKET, 20000);
|
2021-07-17 03:48:27 +02:00
|
|
|
@@ -192,7 +198,10 @@ public abstract class AbstractFurnaceBlockEntity extends BaseContainerBlockEntit
|
2021-06-14 20:50:22 +02:00
|
|
|
AbstractFurnaceBlockEntity.add(map, (ItemLike) Blocks.COMPOSTER, 300);
|
|
|
|
AbstractFurnaceBlockEntity.add(map, (ItemLike) Blocks.AZALEA, 100);
|
|
|
|
AbstractFurnaceBlockEntity.add(map, (ItemLike) Blocks.FLOWERING_AZALEA, 100);
|
|
|
|
- return map;
|
|
|
|
+ // Paper start - cache burn durations
|
|
|
|
+ cachedBurnDurations = com.google.common.collect.ImmutableMap.copyOf(map);
|
|
|
|
+ return cachedBurnDurations;
|
|
|
|
+ // Paper end
|
|
|
|
}
|
|
|
|
|
|
|
|
// CraftBukkit start - add fields and methods
|