Skip to content

Commit

Permalink
Correct BWG Pitcher Plant Item Models
Browse files Browse the repository at this point in the history
Signed-off-by: Joseph T. McQuigg <[email protected]>
  • Loading branch information
JT122406 committed Dec 12, 2024
1 parent 57ae0c7 commit fea687d
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 2 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@
- Decrease Cypress, and Palo Verde Tree File Sizes
- Refactor Platform FarmLandBlock to have Platform Name
- Move Config Classes to Config Package
- Correct BWG Pitcher Plant Item Models

# 1.4.4
- Add Russian Translations (ru_ru) (Credits: j-tap)
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"parent": "minecraft:item/generated",
"textures": {
"layer0": "biomeswevegone:block/cyan_pitcher_plant_top"
"layer0": "biomeswevegone:item/cyan_pitcher_plant"
}
}
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"parent": "minecraft:item/generated",
"textures": {
"layer0": "biomeswevegone:block/magenta_pitcher_plant_top"
"layer0": "biomeswevegone:item/magenta_pitcher_plant"
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -82,6 +82,8 @@ protected void registerModels() {
basicItem(BWGBlocks.ALOE_VERA.get().asItem());
simpleItem(BWGItems.CATTAIL_SPROUT.get(), "cattails");
simpleItemBlockTexture(BWGBlocks.WITCH_HAZEL_BRANCH.get());
simpleItem(BWGBlocks.CYAN_PITCHER_PLANT.get().asItem(), "cyan_pitcher_plant");
simpleItem(BWGBlocks.MAGENTA_PITCHER_PLANT.get().asItem(), "magenta_pitcher_plant");
}

private void simpleItem(ItemLike item, String texture) {
Expand Down

0 comments on commit fea687d

Please sign in to comment.