summaryrefslogtreecommitdiffstats
path: root/src/Defines.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/Defines.h')
-rw-r--r--src/Defines.h19
1 files changed, 19 insertions, 0 deletions
diff --git a/src/Defines.h b/src/Defines.h
index a3222f73a..7a7f4c598 100644
--- a/src/Defines.h
+++ b/src/Defines.h
@@ -1175,6 +1175,25 @@ namespace ItemCategory
IsBoots(a_ItemType)
);
}
+
+
+
+ inline bool IsHorseArmor(short a_ItemType)
+ {
+ switch (a_ItemType)
+ {
+ case E_ITEM_IRON_HORSE_ARMOR:
+ case E_ITEM_GOLD_HORSE_ARMOR:
+ case E_ITEM_DIAMOND_HORSE_ARMOR:
+ {
+ return true;
+ }
+ default:
+ {
+ return false;
+ }
+ }
+ }
}
// tolua_end