Fix new special items having uninitialized data
This commit is contained in:
@@ -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;
|
||||
};
|
||||
|
Reference in New Issue
Block a user