Merge pull request #1338 from akortunov/valuefix

Change mValue type for clothes to unsigned short (bug #3960)
This commit is contained in:
scrawl 2017-07-18 10:13:51 +00:00 committed by GitHub
commit ffb6dff6aa

View file

@ -39,7 +39,7 @@ struct Clothing
{ {
int mType; int mType;
float mWeight; float mWeight;
short mValue; unsigned short mValue;
short mEnchant; short mEnchant;
}; };
CTDTstruct mData; CTDTstruct mData;