Fixes #727 - "Wireless Grid issue with offhand food"

This commit is contained in:
Raoul Van den Berge
2016-12-09 22:12:11 +01:00
parent 687ef02073
commit 2db1d3c5da
2 changed files with 2 additions and 1 deletions

View File

@@ -8,6 +8,7 @@
- The Grid now resizes based on screen size (max rows can be configured) (raoulvdberge)
- Added configuration option to enable large fonts in Grid (raoulvdberge)
- Made Solderer tooltip less big (raoulvdberge)
- Fixed bug with opening a network item with food in offhand (raoulvdberge)
### 1.3.3
- Updated Forge to 2188 (raoulvdberge)

View File

@@ -68,7 +68,7 @@ public abstract class ItemNetworkItem extends ItemBase implements INetworkItemPr
}
}
return super.onItemRightClick(world, player, hand);
return ActionResult.newResult(EnumActionResult.SUCCESS, stack);
}
@Override