diff --git a/src/Common/com/bioxx/tfc2/blocks/BlockEffect.java b/src/Common/com/bioxx/tfc2/blocks/BlockEffect.java index 193c4d78..03b6f7ec 100644 --- a/src/Common/com/bioxx/tfc2/blocks/BlockEffect.java +++ b/src/Common/com/bioxx/tfc2/blocks/BlockEffect.java @@ -30,7 +30,7 @@ public int getLightValue(IBlockState state, IBlockAccess world, BlockPos pos) IBlockState block = world.getBlockState(pos); if(block.getValue(META_PROPERTY) == EffectType.Acid) return 4; - else return getLightValue(state, world, pos); + else return super.getLightValue(state, world, pos); } @Override