From 2bd105f5e224d7ddbb1974c18b88bb4c82b614bc Mon Sep 17 00:00:00 2001 From: Andrei Kortunov Date: Tue, 18 Jul 2017 11:51:19 +0400 Subject: [PATCH] Change mValue type for clothes to unsigned short (fixes #3960) --- components/esm/loadclot.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/esm/loadclot.hpp b/components/esm/loadclot.hpp index 39e5ea672..a9ea3e70a 100644 --- a/components/esm/loadclot.hpp +++ b/components/esm/loadclot.hpp @@ -39,7 +39,7 @@ struct Clothing { int mType; float mWeight; - short mValue; + unsigned short mValue; short mEnchant; }; CTDTstruct mData;