Fix redstone power calculation (#5433)
This commit is contained in:
parent
87b67cb45a
commit
68433924c7
1 changed files with 1 additions and 1 deletions
|
@ -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);
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
Loading…
Reference in a new issue