Cultural Delights

Cultural Delights

8M Downloads

Avocado blocks misbehaving

hammertater opened this issue ยท 1 comments

commented

Hey, I noticed two issues with your avocado blocks in 1.19.2:

1 - fruiting_avocado_leaves are missing the minecraft:leaves tag

2 - when you make your logs strippable:

if(context.getItemInHand().getItem() instanceof AxeItem) {

It's better to check for the correct tool action, like so:

if (toolAction == ToolActions.AXE_STRIP)

Because not all axes will be instances of AxeItem, and some mods might try to strip logs without using any kind of axe

commented

this should be fixed in the next update