Skip to content

Commit

Permalink
Fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
Thodor12 committed Nov 17, 2024
1 parent 24241c5 commit 5cc490e
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
6 changes: 6 additions & 0 deletions src/main/java/com/minecolonies/api/items/ModItems.java
Original file line number Diff line number Diff line change
Expand Up @@ -183,6 +183,12 @@ public static Item[] getAllIngredients()
public static Item[] getAllFoods()
{
return new Item[] {
// Breads
milkyBread,
sugaryBread,
goldenBread,
chorusBread,

// Tier 1 Food
cheddar_cheese,
feta_cheese,
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/com/minecolonies/core/items/ItemFood.java
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ public class ItemFood extends Item implements IMinecoloniesFoodItem
* @param builder the item properties to use.
* @param tier the nutrition tier.
*/
public ItemFood(@NotNull final Properties builder, final String producer, final int tier)
public ItemFood(@NotNull final Properties builder, final int tier)
{
super(builder);
this.tier = tier;
Expand Down

0 comments on commit 5cc490e

Please sign in to comment.