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
|
2023-09-22 06:40:51 +02:00
|
|
|
index d7a89c2b70de20f632ee210780ede0bc36369710..b6e31bede16f7dbc9abb6609f1c39b82883512b2 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
|
2023-03-14 21:25:13 +01:00
|
|
|
@@ -133,7 +133,13 @@ public abstract class AbstractFurnaceBlockEntity extends BaseContainerBlockEntit
|
2022-06-08 09:30:41 +02:00
|
|
|
this.recipeType = recipeType; // Paper
|
2021-06-14 20:50:22 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
+ 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);
|
2023-03-14 21:25:13 +01:00
|
|
|
@@ -195,7 +201,10 @@ public abstract class AbstractFurnaceBlockEntity extends BaseContainerBlockEntit
|
2021-06-14 20:50:22 +02:00
|
|
|
AbstractFurnaceBlockEntity.add(map, (ItemLike) Blocks.AZALEA, 100);
|
|
|
|
AbstractFurnaceBlockEntity.add(map, (ItemLike) Blocks.FLOWERING_AZALEA, 100);
|
2022-06-08 09:30:41 +02:00
|
|
|
AbstractFurnaceBlockEntity.add(map, (ItemLike) Blocks.MANGROVE_ROOTS, 300);
|
2021-06-14 20:50:22 +02:00
|
|
|
- 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
|