Skip to content

Commit

Permalink
Fix Tests
Browse files Browse the repository at this point in the history
  • Loading branch information
maxanier committed May 13, 2017
1 parent 8a886bc commit cfcb0cb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/de/teamlapen/vampirism/tests/Tests.java
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ private static boolean bloodFluidHandler(World world, BlockPos pos) throws Throw
FluidLib.drainContainerIntoTank(handler, bloodBottle2.getCapability(CapabilityFluidHandler.FLUID_HANDLER_CAPABILITY, null));
assert BloodHelper.getBlood(handler) < blood : "Failed to train from container into bottles";
FluidLib.drainContainerIntoTank(bloodBottle1.getCapability(CapabilityFluidHandler.FLUID_HANDLER_CAPABILITY, null), handler);
//FluidLib.drainContainerIntoTank(bloodBottle2.getCapability(CapabilityFluidHandler.FLUID_HANDLER_CAPABILITY,null),handler);
FluidLib.drainContainerIntoTank(bloodBottle2.getCapability(CapabilityFluidHandler.FLUID_HANDLER_CAPABILITY, null), handler);
log("%d %d", BloodHelper.getBlood(handler), blood);
assert BloodHelper.getBlood(handler) == blood : "Lost blood somewhere";
return true;
Expand Down

0 comments on commit cfcb0cb

Please sign in to comment.