From 20a0a96c84008f92b07bde5690261ee1e7cc4e35 Mon Sep 17 00:00:00 2001 From: DBotThePony Date: Sun, 22 Aug 2021 17:13:45 +0700 Subject: [PATCH] Fix nutrient paste missing from creative tab --- src/main/java/ru/dbotthepony/mc/otm/Registry.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/java/ru/dbotthepony/mc/otm/Registry.java b/src/main/java/ru/dbotthepony/mc/otm/Registry.java index 7e5d91e2d..f276f6915 100644 --- a/src/main/java/ru/dbotthepony/mc/otm/Registry.java +++ b/src/main/java/ru/dbotthepony/mc/otm/Registry.java @@ -162,7 +162,7 @@ public class Registry { public static final ItemPatternStorage PATTERN_DRIVE_NORMAL = new ItemPatternStorage(4); public static final ItemPatternStorage PATTERN_DRIVE_CREATIVE = new ItemPatternStorage(); - public static final Item NUTRIENT_PASTE = new Item(new Item.Properties().stacksTo(64).food(new FoodProperties.Builder().meat().nutrition(8).saturationMod(0.9F).build())); + public static final Item NUTRIENT_PASTE = new Item(new Item.Properties().stacksTo(64).food(new FoodProperties.Builder().meat().nutrition(8).saturationMod(0.9F).build()).tab(OverdriveThatMatters.CREATIVE_TAB)); static { ANDROID_STATION.setRegistryName(Names.ANDROID_STATION);