diff --git a/src/material/Item.php b/src/material/Item.php index 12a4b97e8..b7861d67b 100644 --- a/src/material/Item.php +++ b/src/material/Item.php @@ -25,6 +25,8 @@ class Item{ WHEAT_SEEDS => "WheatSeedsItem", PUMPKIN_SEEDS => "PumpkinSeedsItem", MELON_SEEDS => "MelonSeedsItem", + MUSHROOM_STEW => "MushroomStewItem", + BEETROOT_SOUP => "BeetrootSoupItem", CARROT => "CarrotItem", POTATO => "PotatoItem", BEETROOT_SEEDS => "BeetrootSeedsItem", diff --git a/src/material/item/generic/BeetrootSoup.php b/src/material/item/generic/BeetrootSoup.php new file mode 100644 index 000000000..787d6ad21 --- /dev/null +++ b/src/material/item/generic/BeetrootSoup.php @@ -0,0 +1,28 @@ +maxStackSize = 1; + } + +} \ No newline at end of file diff --git a/src/material/item/generic/MushroomStew.php b/src/material/item/generic/MushroomStew.php new file mode 100644 index 000000000..b9ba672fc --- /dev/null +++ b/src/material/item/generic/MushroomStew.php @@ -0,0 +1,28 @@ +maxStackSize = 1; + } + +} \ No newline at end of file