From 7b9edffa4758fe70228801c28bcdadb648c13570 Mon Sep 17 00:00:00 2001 From: Shoghi Cervantes Date: Tue, 26 Nov 2013 15:23:39 +0100 Subject: [PATCH] Mushroom Stew and Beetroot Soup are no longer stackable --- src/material/Item.php | 2 ++ src/material/item/generic/BeetrootSoup.php | 28 ++++++++++++++++++++++ src/material/item/generic/MushroomStew.php | 28 ++++++++++++++++++++++ 3 files changed, 58 insertions(+) create mode 100644 src/material/item/generic/BeetrootSoup.php create mode 100644 src/material/item/generic/MushroomStew.php 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