Skip to content

Commit 5bd993e

Browse files
Update src/main/java/com/tcm/MineTale/registry/ModItems.java
Co-authored-by: coderabbitai[bot] <136622811+coderabbitai[bot]@users.noreply.github.com>
1 parent 4ac2a1c commit 5bd993e

1 file changed

Lines changed: 3 additions & 1 deletion

File tree

src/main/java/com/tcm/MineTale/registry/ModItems.java

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,9 @@ public static void initialize() {
6464
public static final Item YELLOW_CLOTH = register("yellow_cloth", Item::new, new Item.Properties());
6565

6666
// --- SEEDS & FARMING (Bags and Bulbs) ---
67-
public static final Item LETTUCE = register("lettuce", Item::new, new Item.Properties());
67+
public static final Item LETTUCE = register("lettuce", Item::new, new Item.Properties().food(
68+
new FoodProperties.Builder().nutrition(2).saturationModifier(0.3f).build()
69+
));
6870
public static final Item CHILLI_SEED_BAG = register("chilli_seed_bag", Item::new, new Item.Properties());
6971
public static final Item CHILLI_SEED_BAG_ETERNAL = register("chilli_seed_bag_eternal", Item::new, new Item.Properties());
7072
public static final Item SUNFLOWER_SEED_BAG = register("sunflower_seed_bag", Item::new, new Item.Properties());

0 commit comments

Comments
 (0)