Update common/src/main/java/dev/sillyangel/nuggetmod/item/ModItems.java
All checks were successful
Build and Artifact / build (pull_request) Successful in 7m23s

This commit is contained in:
2026-03-24 12:32:51 -05:00
parent 7b51341e4d
commit 6555952e1f

View File

@@ -17,6 +17,9 @@ public class ModItems {
public static final RegistrySupplier<Item> NUGGET = ITEMS.register("nugget",
() -> new Item(createSettings("nugget").food(ModFoodComponents.NUGGET)));
public static final RegistrySupplier<Item> NUGGET_CAKE = ITEMS.register("nugget_cake",
() -> new Item(createSettings("nugget_cake")));
public static final RegistrySupplier<Item> RAW_NUGGET = ITEMS.register("raw_nugget",
() -> new Item(createSettings("raw_nugget")));