aboutsummaryrefslogtreecommitdiffhomepage
path: root/removed-patches-1-20-5/0955-Use-correct-variable-for-initializing-CraftLootTable.patch
diff options
context:
space:
mode:
Diffstat (limited to 'removed-patches-1-20-5/0955-Use-correct-variable-for-initializing-CraftLootTable.patch')
-rw-r--r--removed-patches-1-20-5/0955-Use-correct-variable-for-initializing-CraftLootTable.patch19
1 files changed, 0 insertions, 19 deletions
diff --git a/removed-patches-1-20-5/0955-Use-correct-variable-for-initializing-CraftLootTable.patch b/removed-patches-1-20-5/0955-Use-correct-variable-for-initializing-CraftLootTable.patch
deleted file mode 100644
index ab46cdf78a..0000000000
--- a/removed-patches-1-20-5/0955-Use-correct-variable-for-initializing-CraftLootTable.patch
+++ /dev/null
@@ -1,19 +0,0 @@
-From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
-From: Jake Potrebic <[email protected]>
-Date: Tue, 10 Oct 2023 10:17:43 -0700
-Subject: [PATCH] Use correct variable for initializing CraftLootTable
-
-
-diff --git a/src/main/java/net/minecraft/world/level/storage/loot/LootDataManager.java b/src/main/java/net/minecraft/world/level/storage/loot/LootDataManager.java
-index 973b786368cf628815f099eefe968338c97c52ed..3ddf6ab00de2456ebf504985b88994f970e3b5c4 100644
---- a/src/main/java/net/minecraft/world/level/storage/loot/LootDataManager.java
-+++ b/src/main/java/net/minecraft/world/level/storage/loot/LootDataManager.java
-@@ -103,7 +103,7 @@ public class LootDataManager implements PreparableReloadListener, LootDataResolv
- });
- // CraftBukkit start
- map1.forEach((key, lootTable) -> {
-- if (object instanceof LootTable table) {
-+ if (lootTable instanceof LootTable table) { // Paper - Use correct variable for initializing CraftLootTable
- table.craftLootTable = new CraftLootTable(CraftNamespacedKey.fromMinecraft(key.location()), table);
- }
- });