2018-09-01 00:56:57 +02:00
|
|
|
From a1d6c6d4804c230258877a959278864f477778a6 Mon Sep 17 00:00:00 2001
|
2018-07-19 01:16:19 +02:00
|
|
|
From: Aikar <aikar@aikar.co>
|
|
|
|
Date: Sat, 16 Jun 2018 16:23:38 -0400
|
|
|
|
Subject: [PATCH] Ignore Missing Recipes in RecipeBook to avoid data errors
|
|
|
|
|
|
|
|
This code was causing NPE's in saving player data, potentially related to reloads.
|
|
|
|
|
|
|
|
diff --git a/src/main/java/net/minecraft/server/RecipeBookServer.java b/src/main/java/net/minecraft/server/RecipeBookServer.java
|
2018-09-01 00:56:57 +02:00
|
|
|
index b0c726be19..34e34b7855 100644
|
2018-07-19 01:16:19 +02:00
|
|
|
--- a/src/main/java/net/minecraft/server/RecipeBookServer.java
|
|
|
|
+++ b/src/main/java/net/minecraft/server/RecipeBookServer.java
|
2018-09-01 00:56:57 +02:00
|
|
|
@@ -65,6 +65,10 @@ public class RecipeBookServer extends RecipeBook {
|
|
|
|
NBTTagList nbttaglist = new NBTTagList();
|
2018-07-19 01:16:19 +02:00
|
|
|
|
2018-09-01 00:56:57 +02:00
|
|
|
for(MinecraftKey minecraftkey : this.a) {
|
2018-07-19 01:16:19 +02:00
|
|
|
+ // Paper start - ignore missing recipes
|
|
|
|
+ IRecipe recipe = this.h.a(minecraftkey);
|
|
|
|
+ if (recipe == null) continue;
|
|
|
|
+ // Paper end
|
2018-09-01 00:56:57 +02:00
|
|
|
nbttaglist.add((NBTBase)(new NBTTagString(minecraftkey.toString())));
|
2018-07-19 01:16:19 +02:00
|
|
|
}
|
|
|
|
|
2018-09-01 00:56:57 +02:00
|
|
|
@@ -72,6 +76,10 @@ public class RecipeBookServer extends RecipeBook {
|
|
|
|
NBTTagList nbttaglist1 = new NBTTagList();
|
2018-07-19 01:16:19 +02:00
|
|
|
|
2018-09-01 00:56:57 +02:00
|
|
|
for(MinecraftKey minecraftkey1 : this.b) {
|
2018-07-19 01:16:19 +02:00
|
|
|
+ // Paper start - ignore missing recipes
|
|
|
|
+ IRecipe recipe = this.h.a(minecraftkey1);
|
|
|
|
+ if (recipe == null) continue;
|
|
|
|
+ // Paper end
|
2018-09-01 00:56:57 +02:00
|
|
|
nbttaglist1.add((NBTBase)(new NBTTagString(minecraftkey1.toString())));
|
2018-07-19 01:16:19 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
--
|
|
|
|
2.18.0
|
|
|
|
|