Skip to content

Commit

Permalink
Possible fix for infuser destroying chalices #430
Browse files Browse the repository at this point in the history
  • Loading branch information
rubensworks committed Jul 14, 2016
1 parent d430685 commit 2c1a6e2
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
2 changes: 1 addition & 1 deletion build.properties
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
mod_version=0.10.5
minecraft_version=1.9.4
forge_version=12.17.0.1954
forge_version=12.17.0.1976
mcp_mappings_version=snapshot_20160519
cyclopscore_version=0.7.0-363
release_type=release
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,9 @@ public boolean canTick(TileBloodInfuser tile, ItemStack itemStack, int slot, int
@Override
public void onTick(TileBloodInfuser tile, ItemStack itemStack, int slot, int tick) {
ItemStack infuseStack = getInfuseStack(tile);
if (infuseStack != null) {
infuseStack = infuseStack.copy();
}
IFluidHandler container = FluidUtil.getFluidHandler(infuseStack);
FluidStack fluidStack = tile.getTank().getFluid().copy();

Expand Down

0 comments on commit 2c1a6e2

Please sign in to comment.