Merge branch 'bloodmagic1.8' of https://github.com/WayofTime/BloodMagic into bloodmagic1.8

This commit is contained in:
Arcaratus 2015-07-30 10:24:44 -04:00
commit 2472cad9f1
266 changed files with 2398 additions and 6083 deletions

View file

@ -538,4 +538,14 @@ public class TEReagentConduit extends TileSegmentedReagentHandler implements IUp
return super.drain(from, resource, doDrain);
}
public void removeReagentDestinationViaActual(Reagent reagent, BlockPos pos)
{
this.removeReagentDestinationViaActual(reagent, pos.getX(), pos.getY(), pos.getZ());
}
public boolean addReagentDestinationViaActual(Reagent reagent, BlockPos pos)
{
return addReagentDestinationViaActual(reagent, pos.getX(), pos.getY(), pos.getZ());
}
}