Relink modified carrot item to block

This commit is contained in:
Sergeant Acoustic 2025-12-26 05:37:41 +00:00
parent 301a6fbc1d
commit 1909f78bd1

View file

@ -117,7 +117,7 @@ public class MC_Rebalance
public static final RegistryObject<Item> bread = VANILLA_ITEMS.register("bread", () -> new Item(new Item.Properties().food(new FoodProperties.Builder().alwaysEat().nutrition(3).saturationMod(0.4f).build())));
public static final RegistryObject<Item> carrot = VANILLA_ITEMS.register("carrot", () -> new Item(new Item.Properties().food(new FoodProperties.Builder().alwaysEat().nutrition(2).saturationMod(0.5f).build())));
public static final RegistryObject<Item> carrot = VANILLA_ITEMS.register("carrot", () -> new ItemNameBlockItem(Blocks.CARROTS, (new Item.Properties().food(new FoodProperties.Builder().alwaysEat().nutrition(2).saturationMod(0.5f).build()))));
public static final RegistryObject<Item> raw_rabbit = VANILLA_ITEMS.register("rabbit", () -> new Item(new Item.Properties().food(new FoodProperties.Builder().alwaysEat().nutrition(2).saturationMod(1.0f).build())));