Fix redstone power calculation (#5433)

This commit is contained in:
Merlin Addams 2019-02-04 19:38:54 +00:00 committed by LexManos
parent 87b67cb45a
commit 68433924c7

View file

@ -743,7 +743,7 @@ public interface IForgeBlock
*/ */
default boolean shouldCheckWeakPower(IBlockState state, IWorldReader world, BlockPos pos, EnumFacing side) default boolean shouldCheckWeakPower(IBlockState state, IWorldReader world, BlockPos pos, EnumFacing side)
{ {
return state.isTopSolid(); return state.isNormalCube(world, pos);
} }
/** /**