Fixed dupe bug when inserting bucket in Fluid Grid, fixes #742

This commit is contained in:
Raoul Van den Berge
2016-12-13 22:43:15 +01:00
parent fd4a73210b
commit 70ab0f204d
2 changed files with 2 additions and 2 deletions

View File

@@ -2,6 +2,7 @@
### 1.3.5
- Fixed Controller not using energy (raoulvdberge)
- Fixed dupe bug when inserting bucket in Fluid Grid (raoulvdberge)
- Added regulator mode to Exporter (InusualZ)
### 1.3.4

View File

@@ -82,8 +82,7 @@ public class FluidGridHandler implements IFluidGridHandler {
@Override
public void onInsertHeldContainer(EntityPlayerMP player) {
onInsert(player.inventory.getItemStack());
player.inventory.setItemStack(RSUtils.getStack(onInsert(player.inventory.getItemStack())));
player.updateHeldItem();
}
}