Add constants to BlockStateWrapper

This commit is contained in:
James Seibel
2023-11-25 08:46:03 -06:00
parent 10d542ed14
commit a95171dbbe
2 changed files with 3 additions and 3 deletions
@@ -177,12 +177,12 @@ public class BlockStateWrapper implements IBlockStateWrapper
if (this.isAir() || !this.blockState.canOcclude())
{
// completely transparent
return 0;
return FULLY_TRANSPARENT;
}
else
{
// completely opaque
return 16;
return FULLY_OPAQUE;
}
}