From 9586ff04882af66db0236daf15fc3ac8039267f6 Mon Sep 17 00:00:00 2001 From: Paul Gilbert Date: Fri, 23 Mar 2018 08:02:51 -0400 Subject: XEEN: Fix equpping armor --- engines/xeen/item.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/engines/xeen/item.cpp b/engines/xeen/item.cpp index fb8dd24aac..cd3ba80b4e 100644 --- a/engines/xeen/item.cpp +++ b/engines/xeen/item.cpp @@ -379,7 +379,7 @@ void ArmorItems::equipItem(int itemIndex) { if (passRestrictions(item._id)) { for (uint idx = 0; idx < size(); ++idx) { XeenItem &i = operator[](idx); - if (i._frame == 9) { + if (i._frame == 3) { equipError(itemIndex, CATEGORY_ARMOR, idx, CATEGORY_ARMOR); return; } -- cgit v1.2.3