Fix oddity with comparators on Altars (#1058)
*shakes fist at @Arcaratus*
(cherry picked from commit 461c476
)
This commit is contained in:
parent
da1bb01ff0
commit
a7a6b1fddc
|
@ -400,7 +400,7 @@ public class BloodAltar implements IFluidHandler
|
||||||
{
|
{
|
||||||
BlockPos newPos = pos.offset(facing);
|
BlockPos newPos = pos.offset(facing);
|
||||||
IBlockState block = world.getBlockState(newPos);
|
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)
|
if (internalCounter % (Math.max(20 - this.accelerationUpgrades, 1)) == 0)
|
||||||
|
|
Loading…
Reference in a new issue