mirror of
https://github.com/PaperMC/Paper.git
synced 2024-12-27 15:00:13 +01:00
Ignore Missing Recipes in RecipeBook to avoid data errors
This code was causing NPE's in saving player data, potentially related to reloads.
This commit is contained in:
parent
4a55e34625
commit
43a2693ca0
2 changed files with 42 additions and 0 deletions
|
@ -0,0 +1,41 @@
|
|||
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
|
||||
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
|
||||
index 7eecdc9da..c7b947d2f 100644
|
||||
--- a/src/main/java/net/minecraft/server/RecipeBookServer.java
|
||||
+++ b/src/main/java/net/minecraft/server/RecipeBookServer.java
|
||||
@@ -0,0 +0,0 @@ public class RecipeBookServer extends RecipeBook {
|
||||
while (iterator.hasNext()) {
|
||||
IRecipe irecipe = (IRecipe) iterator.next();
|
||||
|
||||
- nbttaglist.add(new NBTTagString(((MinecraftKey) CraftingManager.recipes.b(irecipe)).toString()));
|
||||
+ // Paper start - ignore missing recipes
|
||||
+ MinecraftKey key = CraftingManager.recipes.b(irecipe);
|
||||
+ if (key == null) continue;
|
||||
+ nbttaglist.add(new NBTTagString(key.toString()));
|
||||
+ // Paper end
|
||||
}
|
||||
|
||||
nbttagcompound.set("recipes", nbttaglist);
|
||||
@@ -0,0 +0,0 @@ public class RecipeBookServer extends RecipeBook {
|
||||
Iterator iterator1 = this.e().iterator();
|
||||
|
||||
while (iterator1.hasNext()) {
|
||||
- IRecipe irecipe1 = (IRecipe) iterator1.next();
|
||||
+ // Paper start - ignore missing recipes
|
||||
+ IRecipe irecipe = (IRecipe) iterator1.next();
|
||||
|
||||
- nbttaglist1.add(new NBTTagString(((MinecraftKey) CraftingManager.recipes.b(irecipe1)).toString()));
|
||||
+ MinecraftKey key = CraftingManager.recipes.b(irecipe);
|
||||
+ if (key == null) continue;
|
||||
+ nbttaglist.add(new NBTTagString(key.toString()));
|
||||
+ // Paper end
|
||||
}
|
||||
|
||||
nbttagcompound.set("toBeDisplayed", nbttaglist1);
|
||||
--
|
|
@ -101,6 +101,7 @@ import PlayerConnectionUtils
|
|||
import RegionFile
|
||||
import RegistryBlockID
|
||||
import RemoteControlListener
|
||||
import RecipeBookServer
|
||||
import ServerPing
|
||||
import StructureBoundingBox
|
||||
import StructurePiece
|
||||
|
|
Loading…
Reference in a new issue