Fixed transporter scanner rendering regression introduced in 1.5.4

This commit is contained in:
Unknown 2019-06-18 00:59:01 +02:00 committed by unknown
parent e9ba3af0b1
commit 8bea9987b5

View file

@ -83,7 +83,7 @@ public class BlockTransporterScanner extends BlockAbstractBase {
@Override
public int getLightValue(@Nonnull final IBlockState blockState, final IBlockAccess blockAccess, @Nonnull final BlockPos blockPos) {
return blockState.getValue(BlockProperties.ACTIVE) ? 6 : 0;
return blockState.getValue(BlockProperties.ACTIVE) ? 13 : 0;
}
@SuppressWarnings("deprecation")