mirror of
https://github.com/PaperMC/Paper.git
synced 2025-01-09 17:57:34 +01:00
b3a8254758
By: md_5 <git@md-5.net>
29 lines
1.3 KiB
Diff
29 lines
1.3 KiB
Diff
--- a/net/minecraft/stats/RecipeBookServer.java
|
|
+++ b/net/minecraft/stats/RecipeBookServer.java
|
|
@@ -20,6 +20,8 @@
|
|
import org.apache.logging.log4j.LogManager;
|
|
import org.apache.logging.log4j.Logger;
|
|
|
|
+import org.bukkit.craftbukkit.event.CraftEventFactory; // CraftBukkit
|
|
+
|
|
public class RecipeBookServer extends RecipeBook {
|
|
|
|
public static final String RECIPE_BOOK_TAG = "recipeBook";
|
|
@@ -36,7 +38,7 @@
|
|
IRecipe<?> irecipe = (IRecipe) iterator.next();
|
|
MinecraftKey minecraftkey = irecipe.getKey();
|
|
|
|
- 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);
|
|
@@ -70,6 +72,7 @@
|
|
}
|
|
|
|
private void a(PacketPlayOutRecipes.Action packetplayoutrecipes_action, EntityPlayer entityplayer, List<MinecraftKey> list) {
|
|
+ if (entityplayer.connection == null) return; // SPIGOT-4478 during PlayerLoginEvent
|
|
entityplayer.connection.sendPacket(new PacketPlayOutRecipes(packetplayoutrecipes_action, list, Collections.emptyList(), this.a()));
|
|
}
|
|
|