Fixed dupe bug when inserting bucket in Fluid Grid, fixes #742
This commit is contained in:
@@ -2,6 +2,7 @@
|
|||||||
|
|
||||||
### 1.3.5
|
### 1.3.5
|
||||||
- Fixed Controller not using energy (raoulvdberge)
|
- Fixed Controller not using energy (raoulvdberge)
|
||||||
|
- Fixed dupe bug when inserting bucket in Fluid Grid (raoulvdberge)
|
||||||
- Added regulator mode to Exporter (InusualZ)
|
- Added regulator mode to Exporter (InusualZ)
|
||||||
|
|
||||||
### 1.3.4
|
### 1.3.4
|
||||||
|
|||||||
@@ -82,8 +82,7 @@ public class FluidGridHandler implements IFluidGridHandler {
|
|||||||
|
|
||||||
@Override
|
@Override
|
||||||
public void onInsertHeldContainer(EntityPlayerMP player) {
|
public void onInsertHeldContainer(EntityPlayerMP player) {
|
||||||
onInsert(player.inventory.getItemStack());
|
player.inventory.setItemStack(RSUtils.getStack(onInsert(player.inventory.getItemStack())));
|
||||||
|
|
||||||
player.updateHeldItem();
|
player.updateHeldItem();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user