mirror of
https://github.com/vcmi/vcmi.git
synced 2024-12-24 22:14:36 +02:00
Fix possible uninitialized variables
This commit is contained in:
parent
d3d15cd6b9
commit
f6e5f09d50
@ -29,15 +29,15 @@ public:
|
|||||||
};
|
};
|
||||||
|
|
||||||
ui32 identifier; //unique code for this monster (used in missions)
|
ui32 identifier; //unique code for this monster (used in missions)
|
||||||
si8 character; //character of this set of creatures (0 - the most friendly, 4 - the most hostile) => on init changed to -4 (compliant) ... 10 value (savage)
|
si8 character = 0; //character of this set of creatures (0 - the most friendly, 4 - the most hostile) => on init changed to -4 (compliant) ... 10 value (savage)
|
||||||
MetaString message; //message printed for attacking hero
|
MetaString message; //message printed for attacking hero
|
||||||
TResources resources; // resources given to hero that has won with monsters
|
TResources resources; // resources given to hero that has won with monsters
|
||||||
ArtifactID gainedArtifact; //ID of artifact gained to hero, -1 if none
|
ArtifactID gainedArtifact; //ID of artifact gained to hero, -1 if none
|
||||||
bool neverFlees; //if true, the troops will never flee
|
bool neverFlees = false; //if true, the troops will never flee
|
||||||
bool notGrowingTeam; //if true, number of units won't grow
|
bool notGrowingTeam = false; //if true, number of units won't grow
|
||||||
ui64 temppower; //used to handle fractional stack growth for tiny stacks
|
ui64 temppower = 0; //used to handle fractional stack growth for tiny stacks
|
||||||
|
|
||||||
bool refusedJoining;
|
bool refusedJoining = false;
|
||||||
|
|
||||||
void onHeroVisit(const CGHeroInstance * h) const override;
|
void onHeroVisit(const CGHeroInstance * h) const override;
|
||||||
std::string getHoverText(PlayerColor player) const override;
|
std::string getHoverText(PlayerColor player) const override;
|
||||||
|
Loading…
Reference in New Issue
Block a user