Skip to content

Commit

Permalink
fix: Creative Menu Dust of Decay uses correct model.
Browse files Browse the repository at this point in the history
  • Loading branch information
sylv256 committed Nov 17, 2024
1 parent e61b7f6 commit 2b3a995
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -177,7 +177,8 @@ private static void dustOfDecay(ItemStack stack) {

public static ItemStack dustOfDecay() {
ItemStack stack = new ItemStack(LegacyItems.JAPPAS_WAND.get());
dustOfDecay(stack);
stack.set(LegacyComponents.BROKEN, Broken.of(1));
LegacyItems.JAPPAS_WAND.get().verifyComponentsAfterLoad(stack);
return stack;
}
}

0 comments on commit 2b3a995

Please sign in to comment.