Villager Trading GUI will not open if Player is sneaking.
This commit is contained in:
parent
519da32391
commit
c0164f29cd
1 changed files with 11 additions and 0 deletions
|
@ -0,0 +1,11 @@
|
|||
--- ../src_base/minecraft/net/minecraft/entity/passive/EntityVillager.java
|
||||
+++ ../src_work/minecraft/net/minecraft/entity/passive/EntityVillager.java
|
||||
@@ -205,7 +205,7 @@
|
||||
ItemStack itemstack = par1EntityPlayer.inventory.getCurrentItem();
|
||||
boolean flag = itemstack != null && itemstack.itemID == Item.monsterPlacer.itemID;
|
||||
|
||||
- if (!flag && this.isEntityAlive() && !this.isTrading() && !this.isChild())
|
||||
+ if (!flag && this.isEntityAlive() && !this.isTrading() && !this.isChild() && !par1EntityPlayer.isSneaking())
|
||||
{
|
||||
if (!this.worldObj.isRemote)
|
||||
{
|
Loading…
Reference in a new issue