Skip to content

Commit

Permalink
Fix #790: Incompatibility with CTM calling isCustomRenderer too ear…
Browse files Browse the repository at this point in the history
…ly (#791)
  • Loading branch information
Technici4n authored Jul 20, 2024
1 parent a686690 commit 5faf68e
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,9 @@ public boolean usesBlockLight() {

@Override
public boolean isCustomRenderer() {
return originalModel.get().isCustomRenderer();
// CTM calls this before we can resolve the UseBlockModelBakedModel delegate.
// Always return false instead of checking the delegate.
return false;
}

@Override
Expand Down

0 comments on commit 5faf68e

Please sign in to comment.