Skip to content

Commit

Permalink
fix: trying to fix plane LIGHT_MASK_PLANE
Browse files Browse the repository at this point in the history
  • Loading branch information
Bizzonium committed Aug 13, 2024
1 parent a2b12c4 commit c4bc8ed
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/misc/appearance.ts
Original file line number Diff line number Diff line change
Expand Up @@ -193,7 +193,7 @@ export namespace Appearance {
if(plane < Planes.LOWEST_EVER_PLANE || plane > Planes.HIGHEST_EVER_PLANE) {
plane = plane % (Planes.HIGHEST_EVER_PLANE - Planes.LOWEST_EVER_PLANE);
}
return (plane >= Planes.LIGHTING_PLANE && plane <= Planes.LIGHT_MASK_PLANE)
return (plane >= Planes.LIGHTING_PLANE && plane <= Planes.RENDER_PLANE_LIGHTING)
}

export function get_appearance_parts(appearance : Appearance) {
Expand Down

0 comments on commit c4bc8ed

Please sign in to comment.