Skip to content

Commit

Permalink
fix: fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
Zepalesque committed Jun 20, 2024
1 parent ca18bf9 commit 66d5f62
Showing 1 changed file with 6 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -244,37 +244,37 @@ public void potAlt(Block block, Block flower, String location) {
this.getVariantBuilder(block).partialState().addModels(new ConfiguredModel(pot));
}
public void tintedPotDualGloverlay(Block block, Block flower, String location) {
ModelFile pot = this.models().withExistingParent(this.name(block), Redux.loc("block/pot/flower_pot_tinted_dual_gloverlay"))
ModelFile pot = this.models().withExistingParent(this.name(block), Redux.loc("block/template/pot/flower_pot_tinted_dual_gloverlay"))
.texture("plant", this.modLoc("block/" + location + this.name(flower)))
.texture("glow", this.modLoc("block/" + location + this.name(flower) + "_glow"))
.texture("overlay", this.modLoc("block/" + location + this.name(flower) + "_overlay")).renderType("cutout");
this.getVariantBuilder(block).partialState().addModels(new ConfiguredModel(pot));
}
public void tintedPotGlowOverlay(Block block, Block flower, String location) {
ModelFile pot = this.models().withExistingParent(this.name(block), Redux.loc("block/pot/flower_pot_tinted_glowing_overlay"))
ModelFile pot = this.models().withExistingParent(this.name(block), Redux.loc("block/template/pot/flower_pot_tinted_glowing_overlay"))
.texture("plant", this.modLoc("block/" + location + this.name(flower)))
.texture("overlay", this.modLoc("block/" + location + this.name(flower) + "_glow")).renderType("cutout");
this.getVariantBuilder(block).partialState().addModels(new ConfiguredModel(pot));
}
public void tintedPotGlowOverlayAlt(Block block, Block flower, String location) {
ModelFile pot = this.models().withExistingParent(this.name(block), Redux.loc("block/pot/flower_pot_tinted_glowing_overlay"))
ModelFile pot = this.models().withExistingParent(this.name(block), Redux.loc("block/template/pot/flower_pot_tinted_glowing_overlay"))
.texture("plant", this.modLoc("block/" + location + "potted_" + this.name(flower)))
.texture("overlay", this.modLoc("block/" + location + "potted_" + this.name(flower) + "_glow")).renderType("cutout");
this.getVariantBuilder(block).partialState().addModels(new ConfiguredModel(pot));
}
public void tintedPotOverlay(Block block, Block flower, String location) {
ModelFile pot = this.models().withExistingParent(this.name(block), Redux.loc("block/pot/flower_pot_tinted_overlay"))
ModelFile pot = this.models().withExistingParent(this.name(block), Redux.loc("block/template/pot/flower_pot_tinted_overlay"))
.texture("plant", this.modLoc("block/" + location + this.name(flower)))
.texture("overlay", this.modLoc("block/" + location + this.name(flower) + "_overlay")).renderType("cutout");
this.getVariantBuilder(block).partialState().addModels(new ConfiguredModel(pot));
}
public void tintedPot(Block block, Block flower, String location) {
ModelFile pot = this.models().withExistingParent(this.name(block), Redux.loc("block/pot/flower_pot_tinted"))
ModelFile pot = this.models().withExistingParent(this.name(block), Redux.loc("block/template/pot/flower_pot_tinted"))
.texture("plant", this.modLoc("block/" + location + this.name(flower))).renderType("cutout");
this.getVariantBuilder(block).partialState().addModels(new ConfiguredModel(pot));
}
public void tintedPotOverlayAlt(Block block, Block flower, String location) {
ModelFile pot = this.models().withExistingParent(this.name(block), Redux.loc("block/pot/flower_pot_tinted_overlay"))
ModelFile pot = this.models().withExistingParent(this.name(block), Redux.loc("block/template/pot/flower_pot_tinted_overlay"))
.texture("plant", this.modLoc("block/" + location + "potted_" + this.name(flower)))
.texture("overlay", this.modLoc("block/" + location + "potted_" + this.name(flower) + "_overlay")).renderType("cutout");
this.getVariantBuilder(block).partialState().addModels(new ConfiguredModel(pot));
Expand Down

0 comments on commit 66d5f62

Please sign in to comment.