Fix new special items having uninitialized data

This commit is contained in:
2017-01-31 20:11:45 -05:00
parent 888873e2bd
commit bc7e11f89d

View File

@@ -69,8 +69,8 @@ std::istream& operator >> (std::istream& in, eItemUse& e);
class cSpecItem {
public:
short flags;
short special;
short flags = 0;
short special = -1;
std::string name;
std::string descr;
};