Skip to content

Commit

Permalink
another whoopsie
Browse files Browse the repository at this point in the history
  • Loading branch information
apple502j committed Mar 9, 2024
1 parent 124f994 commit 5ff22ae
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -144,7 +144,7 @@ public void testComponentIngredient(TestContext context) {
ItemStack requiredDataStack = new ItemStack(Items.DIAMOND_PICKAXE);
requiredDataStack.set(DataComponentTypes.CUSTOM_DATA, NbtComponent.of(requiredData));
ItemStack extraDataStack = new ItemStack(Items.DIAMOND_PICKAXE);
requiredDataStack.set(DataComponentTypes.CUSTOM_DATA, NbtComponent.of(extraData));
extraDataStack.set(DataComponentTypes.CUSTOM_DATA, NbtComponent.of(extraData));
assertEquals(true, customDataIngredient.test(requiredDataStack));
assertEquals(false, customDataIngredient.test(extraDataStack));

Expand Down

0 comments on commit 5ff22ae

Please sign in to comment.