From 787c16301ca95362921d62096d0ae279eaa0abca Mon Sep 17 00:00:00 2001 From: Christoph Oelckers Date: Thu, 28 Jan 2010 23:51:56 +0000 Subject: [PATCH] - Fixed SBarInfo problem with hexenarmor. SVN r2140 (trunk) --- src/g_shared/sbarinfo_commands.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/g_shared/sbarinfo_commands.cpp b/src/g_shared/sbarinfo_commands.cpp index a19471464..eac92d86c 100644 --- a/src/g_shared/sbarinfo_commands.cpp +++ b/src/g_shared/sbarinfo_commands.cpp @@ -169,7 +169,7 @@ class CommandDrawImage : public SBarInfoCommand if (item != NULL) texture = TexMan[item->Icon]; } - else if(type == HEXENARMOR_ARMOR || type == HEXENARMOR_SHIELD || type == HEXENARMOR_AMULET || type == HEXENARMOR_ARMOR) + else if(type == HEXENARMOR_ARMOR || type == HEXENARMOR_SHIELD || type == HEXENARMOR_HELM || type == HEXENARMOR_AMULET) { int armorType = type - HEXENARMOR_ARMOR;