19 lines
		
	
	
	
		
			1 KiB
			
		
	
	
	
		
			Diff
		
	
	
	
	
	
			
		
		
	
	
			19 lines
		
	
	
	
		
			1 KiB
			
		
	
	
	
		
			Diff
		
	
	
	
	
	
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
 | 
						|
From: Jan Tuck <jan@tuck.dk>
 | 
						|
Date: Mon, 15 Nov 2021 15:20:41 -0500
 | 
						|
Subject: [PATCH] Fix anvil prepare event not working with zero xp
 | 
						|
 | 
						|
 | 
						|
diff --git a/src/main/java/net/minecraft/world/inventory/AnvilMenu.java b/src/main/java/net/minecraft/world/inventory/AnvilMenu.java
 | 
						|
index 0000000000000000000000000000000000000000..0000000000000000000000000000000000000000 100644
 | 
						|
--- a/src/main/java/net/minecraft/world/inventory/AnvilMenu.java
 | 
						|
+++ b/src/main/java/net/minecraft/world/inventory/AnvilMenu.java
 | 
						|
@@ -0,0 +0,0 @@ public class AnvilMenu extends ItemCombinerMenu {
 | 
						|
 
 | 
						|
     @Override
 | 
						|
     protected boolean mayPickup(Player player, boolean present) {
 | 
						|
-        return (player.getAbilities().instabuild || player.experienceLevel >= this.cost.get()) && this.cost.get() > 0;
 | 
						|
+        return (player.getAbilities().instabuild || player.experienceLevel >= this.cost.get()) && this.cost.get() >= 0; // Paper - fix anvil prepare event not working with 0 xp
 | 
						|
     }
 | 
						|
 
 | 
						|
     @Override
 |