@@ -8,21 +8,21 @@
|
||||
+
|
||||
public class RecipeBookServer extends RecipeBook {
|
||||
|
||||
private static final Logger LOGGER = LogManager.getLogger();
|
||||
@@ -35,7 +37,7 @@
|
||||
public static final String RECIPE_BOOK_TAG = "recipeBook";
|
||||
@@ -36,7 +38,7 @@
|
||||
IRecipe<?> irecipe = (IRecipe) iterator.next();
|
||||
MinecraftKey minecraftkey = irecipe.getKey();
|
||||
|
||||
- if (!this.recipes.contains(minecraftkey) && !irecipe.isComplex()) {
|
||||
+ if (!this.recipes.contains(minecraftkey) && !irecipe.isComplex() && CraftEventFactory.handlePlayerRecipeListUpdateEvent(entityplayer, minecraftkey)) { // CraftBukkit
|
||||
- if (!this.known.contains(minecraftkey) && !irecipe.isComplex()) {
|
||||
+ if (!this.known.contains(minecraftkey) && !irecipe.isComplex() && CraftEventFactory.handlePlayerRecipeListUpdateEvent(entityplayer, minecraftkey)) { // CraftBukkit
|
||||
this.a(minecraftkey);
|
||||
this.d(minecraftkey);
|
||||
list.add(minecraftkey);
|
||||
@@ -69,6 +71,7 @@
|
||||
@@ -70,6 +72,7 @@
|
||||
}
|
||||
|
||||
private void a(PacketPlayOutRecipes.Action packetplayoutrecipes_action, EntityPlayer entityplayer, List<MinecraftKey> list) {
|
||||
+ if (entityplayer.playerConnection == null) return; // SPIGOT-4478 during PlayerLoginEvent
|
||||
entityplayer.playerConnection.sendPacket(new PacketPlayOutRecipes(packetplayoutrecipes_action, list, Collections.emptyList(), this.a()));
|
||||
+ if (entityplayer.connection == null) return; // SPIGOT-4478 during PlayerLoginEvent
|
||||
entityplayer.connection.sendPacket(new PacketPlayOutRecipes(packetplayoutrecipes_action, list, Collections.emptyList(), this.a()));
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user