2018-10-05 05:18:46 +02:00
|
|
|
From 6d5a47af205f96269023aae4c781e2487398e98c 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-10-02 12:01:56 +02:00
|
|
|
index dc9dfada2f..6d4d56dd0d 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-10-02 12:01:56 +02:00
|
|
|
@@ -78,6 +78,10 @@ public class RecipeBookServer extends RecipeBook {
|
|
|
|
while (iterator.hasNext()) {
|
|
|
|
MinecraftKey minecraftkey = (MinecraftKey) iterator.next();
|
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-10-02 12:01:56 +02:00
|
|
|
nbttaglist.add((NBTBase) (new NBTTagString(minecraftkey.toString())));
|
2018-07-19 01:16:19 +02:00
|
|
|
}
|
|
|
|
|
2018-10-02 12:01:56 +02:00
|
|
|
@@ -88,6 +92,10 @@ public class RecipeBookServer extends RecipeBook {
|
|
|
|
while (iterator1.hasNext()) {
|
|
|
|
MinecraftKey minecraftkey1 = (MinecraftKey) iterator1.next();
|
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-10-02 12:01:56 +02:00
|
|
|
nbttaglist1.add((NBTBase) (new NBTTagString(minecraftkey1.toString())));
|
2018-07-19 01:16:19 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
--
|
2018-09-29 01:31:59 +02:00
|
|
|
2.19.0
|
2018-07-19 01:16:19 +02:00
|
|
|
|