Skip to content

Commit

Permalink
Make GlowCane Shoots Compostable
Browse files Browse the repository at this point in the history
Signed-off-by: Joseph T. McQuigg <[email protected]>
  • Loading branch information
JT122406 committed Nov 22, 2024
1 parent 7c5f65f commit 31c2ee2
Show file tree
Hide file tree
Showing 3 changed files with 21 additions and 0 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
# 2.2.5
- Make Pale Pumpkin Set Compostable
- Make GlowCane Shoots Compostable

# 2.2.4
- Fix White Mangrove Trees Canopies Floating above trunks
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -98,6 +98,10 @@
"can_villager_compost": true,
"chance": 0.3
},
"biomeswevegone:blue_glowcane_shoot": {
"can_villager_compost": true,
"chance": 0.5
},
"biomeswevegone:blue_rose_bush": {
"can_villager_compost": true,
"chance": 0.65
Expand Down Expand Up @@ -318,6 +322,10 @@
"can_villager_compost": true,
"chance": 0.3
},
"biomeswevegone:green_glowcane_shoot": {
"can_villager_compost": true,
"chance": 0.5
},
"biomeswevegone:green_mushroom": {
"can_villager_compost": true,
"chance": 0.65
Expand Down Expand Up @@ -586,6 +594,10 @@
"can_villager_compost": true,
"chance": 0.3
},
"biomeswevegone:red_glowcane_shoot": {
"can_villager_compost": true,
"chance": 0.5
},
"biomeswevegone:red_maple_leaves": {
"can_villager_compost": true,
"chance": 0.3
Expand Down Expand Up @@ -802,6 +814,10 @@
"can_villager_compost": true,
"chance": 0.65
},
"biomeswevegone:yellow_glowcane_shoot": {
"can_villager_compost": true,
"chance": 0.5
},
"biomeswevegone:yellow_sakura_leaves": {
"can_villager_compost": true,
"chance": 0.3
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,10 @@ else if (block instanceof FlowerBlock || block instanceof TallFlowerBlock || blo

BWGItems.ITEMS.stream().filter(item -> item.get().components().has(DataComponents.FOOD)).forEach(item -> consumer.accept(item.get(), 0.85F));
consumer.accept(BWGItems.PALE_PUMPKIN_SEEDS.get(), 0.3F);
consumer.accept(BWGItems.BLUE_GLOWCANE_SHOOT.get(), 0.5f);
consumer.accept(BWGItems.GREEN_GLOWCANE_SHOOT.get(), 0.5f);
consumer.accept(BWGItems.RED_GLOWCANE_SHOOT.get(), 0.5f);
consumer.accept(BWGItems.YELLOW_GLOWCANE_SHOOT.get(), 0.5f);
}

/**
Expand Down

0 comments on commit 31c2ee2

Please sign in to comment.