Skip to content

Commit

Permalink
stupid autocomplete, you should not switch the variable during autoco…
Browse files Browse the repository at this point in the history
…mplete
  • Loading branch information
KnightMiner committed Jan 19, 2023
1 parent 50ea4a3 commit 97f6c8e
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,7 @@ public static BakedModel bakeModel(IModelConfiguration owner, List<BlockElement>
SimpleBakedModel.Builder builder = new SimpleBakedModel.Builder(owner, overrides).particle(particle);
int size = elements.size();
Transformation transformation = transform.getRotation();
boolean uvlock = transformation.isIdentity();
boolean uvlock = transform.isUvLocked();
for (int i = 0; i < size; i++) {
BlockElement part = elements.get(i);
ColorData colors = LogicHelper.getOrDefault(colorData, i, ColorData.DEFAULT);
Expand Down

0 comments on commit 97f6c8e

Please sign in to comment.