summaryrefslogtreecommitdiffstats
path: root/src/Defines.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/Defines.cpp')
-rw-r--r--src/Defines.cpp26
1 files changed, 26 insertions, 0 deletions
diff --git a/src/Defines.cpp b/src/Defines.cpp
index 02b9f28d5..aa5e46995 100644
--- a/src/Defines.cpp
+++ b/src/Defines.cpp
@@ -623,3 +623,29 @@ bool ItemCategory::IsHorseArmor(short a_ItemType)
}
}
}
+
+
+
+
+
+bool ItemCategory::IsVillagerFood(short a_ItemType)
+{
+ switch (a_ItemType)
+ {
+ case E_ITEM_CARROT:
+ case E_ITEM_POTATO:
+ case E_ITEM_BREAD:
+ case E_ITEM_BEETROOT:
+ case E_ITEM_SEEDS:
+ case E_ITEM_BEETROOT_SEEDS:
+ case E_ITEM_WHEAT:
+ {
+ return true;
+ }
+
+ default:
+ {
+ return false;
+ }
+ }
+}