Skip to content
This repository has been archived by the owner on Oct 4, 2024. It is now read-only.

Commit

Permalink
fixed textures of selector tag covers
Browse files Browse the repository at this point in the history
  • Loading branch information
Trinsdar committed Jul 8, 2024
1 parent 7065d94 commit 2e8899b
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -217,7 +217,7 @@ public class GTCoreItems {
if (i > 15) continue;
int finalI = i;
coverBuilder.put(i, CoverFactory.builder((source, tier, side, factory) -> new CoverSelectorTag(source, tier, side, factory, finalI))
.addTextures(new Texture(GTCore.ID, "block/cover/selector_tags/" + i), new Texture(GTCore.ID, "block/cover/selector_tags/underlay"))
.addTextures(new Texture(GTCore.ID, "block/cover/selector_tag/" + i), new Texture(GTCore.ID, "block/cover/selector_tag/underlay"))
.item((c, t) -> selectorTag).build(GTCore.ID, "selector_tag_"+i));
}
SELECTOR_TAG_INGREDIENTS = ingredientBuilder.build();
Expand Down

0 comments on commit 2e8899b

Please sign in to comment.