Fix oddity with comparators on Altars (#1058)

*shakes fist at @Arcaratus*
This commit is contained in:
Nicholas Ignoffo 2017-02-21 16:08:34 -08:00
parent 0d4524cafc
commit 461c4762fe

View file

@ -400,7 +400,7 @@ public class BloodAltar implements IFluidHandler
{
BlockPos newPos = pos.offset(facing);
IBlockState block = world.getBlockState(newPos);
block.getBlock().onNeighborChange(world, pos, newPos);
block.getBlock().onNeighborChange(world, newPos, pos);
}
}
if (internalCounter % (Math.max(20 - this.accelerationUpgrades, 1)) == 0)