summaryrefslogtreecommitdiffstats
path: root/src/main/java/net/minecraft/server/InventoryMerchant.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/main/java/net/minecraft/server/InventoryMerchant.java')
-rw-r--r--src/main/java/net/minecraft/server/InventoryMerchant.java6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/main/java/net/minecraft/server/InventoryMerchant.java b/src/main/java/net/minecraft/server/InventoryMerchant.java
index f1d7add0..1e238710 100644
--- a/src/main/java/net/minecraft/server/InventoryMerchant.java
+++ b/src/main/java/net/minecraft/server/InventoryMerchant.java
@@ -124,7 +124,7 @@ public class InventoryMerchant implements IInventory {
}
public boolean a(EntityHuman entityhuman) {
- return this.merchant.l_() == entityhuman;
+ return this.merchant.m_() == entityhuman;
}
public void startOpen() {}
@@ -153,12 +153,12 @@ public class InventoryMerchant implements IInventory {
if (merchantrecipelist != null) {
MerchantRecipe merchantrecipe = merchantrecipelist.a(itemstack, itemstack1, this.e);
- if (merchantrecipe != null) {
+ if (merchantrecipe != null && !merchantrecipe.g()) {
this.recipe = merchantrecipe;
this.setItem(2, merchantrecipe.getBuyItem3().cloneItemStack());
} else if (itemstack1 != null) {
merchantrecipe = merchantrecipelist.a(itemstack1, itemstack, this.e);
- if (merchantrecipe != null) {
+ if (merchantrecipe != null && !merchantrecipe.g()) {
this.recipe = merchantrecipe;
this.setItem(2, merchantrecipe.getBuyItem3().cloneItemStack());
} else {