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
1 changed files with 1 additions and 1 deletions

View File

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