Skip to content

Commit

Permalink
wip: fix tags
Browse files Browse the repository at this point in the history
  • Loading branch information
BlayTheNinth committed Jan 9, 2024
1 parent ae47ad3 commit bda19e0
Show file tree
Hide file tree
Showing 9 changed files with 1,733 additions and 436 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,6 @@
public class CookingForBlockheads {

// TODO search doesn't do anything
// TODO tags are failing to load

public static final String MOD_ID = "cookingforblockheads";
public static final Logger logger = LogManager.getLogger(MOD_ID);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ public ItemStack restore(ItemStack itemStack) {
}

private final KitchenItemProvider iceUnitItemProvider = new KitchenItemProvider() {
private final Set<ItemStack> providedItems = Set.of(new ItemStack(Items.SNOW), new ItemStack(Items.ICE));
private final Set<ItemStack> providedItems = Set.of(new ItemStack(Items.SNOWBALL), new ItemStack(Items.SNOW_BLOCK), new ItemStack(Items.ICE));

@Override
public IngredientToken findIngredient(Ingredient ingredient, Collection<IngredientToken> ingredientTokens) {
Expand Down
Loading

0 comments on commit bda19e0

Please sign in to comment.