Skip to content

Commit

Permalink
Merge pull request #164 from wdfaESfaef/bugfix#145
Browse files Browse the repository at this point in the history
修复了生存模式吃牛肉炖蘑菇不返还碗的问题
  • Loading branch information
Gu-ZT authored Apr 4, 2024
2 parents e3480e9 + 5866f89 commit e116b60
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/dev/dubhe/anvilcraft/init/ModItems.java
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ public void appendHoverText(ItemStack stack, @Nullable Level level, List<Compone
public static final Item CHOCOLATE_WHITE = registerItem("chocolate_white", Item::new, defaultProperties().food(ModFoods.CHOCOLATE_WHITE));
public static final Item CREAMY_BREAD_ROLL = registerItem("creamy_bread_roll", Item::new, defaultProperties().food(ModFoods.CREAMY_BREAD_ROLL));
public static final Item BEEF_MUSHROOM_STEW_RAW = registerItem("beef_mushroom_stew_raw", Item::new, defaultProperties());
public static final Item BEEF_MUSHROOM_STEW = registerItem("beef_mushroom_stew", Item::new, defaultProperties().food(ModFoods.BEEF_MUSHROOM_STEW));
public static final Item BEEF_MUSHROOM_STEW = registerItem("beef_mushroom_stew", BowlFoodItem::new, defaultProperties().food(ModFoods.BEEF_MUSHROOM_STEW));
public static final Item UTUSAN_RAW = registerItem("utusan_raw", Item::new, defaultProperties());
public static final Item UTUSAN = registerItem("utusan", UtusanItem::new, defaultProperties());
public static final Item MAGNET_INGOT = registerItem("magnet_ingot", Item::new, defaultProperties());public static final Item DEBRIS_SCRAP = registerItem("debris_scrap", Item::new, defaultProperties());
Expand Down

0 comments on commit e116b60

Please sign in to comment.