Fix oddity with comparators on Altars (#1058)

*shakes fist at @Arcaratus*

(cherry picked from commit 461c476)
This commit is contained in:
Nicholas Ignoffo 2017-02-21 16:08:34 -08:00
parent da1bb01ff0
commit a7a6b1fddc

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)