fix: redstone strength

This commit is contained in:
Timo Ley 2023-02-16 22:42:25 +01:00
parent 61dae438c3
commit 6bceaf38a5
1 changed files with 1 additions and 1 deletions

View File

@ -151,7 +151,7 @@ public class BlockExtended extends BlockContainer {
public int isProvidingWeakPower(IBlockAccess iba, int x, int y, int z, int side) {
TileExtended tl = CoreLib.getTileEntity(iba, x, y, z, TileExtended.class);
return tl != null && tl.isBlockWeakPoweringTo(side) ? 1 : 0;
return tl != null && tl.isBlockWeakPoweringTo(side) ? 15 : 0;
}
public boolean onBlockActivated(