1
0
mirror of https://github.com/vcmi/vcmi.git synced 2025-01-26 03:52:01 +02:00

Fix CGHeroInstance::isInitialized implementation

This commit is contained in:
Vadim Markovtsev 2016-01-27 09:44:04 +03:00
parent 7772b6de74
commit f6679bba50

View File

@ -129,7 +129,7 @@ public:
inline bool isInitialized() const
{ // has this hero been on the map at least once?
return movement == UNINITIALIZED_MOVEMENT && mana == UNINITIALIZED_MANA;
return movement != UNINITIALIZED_MOVEMENT && mana != UNINITIALIZED_MANA;
}
//int3 getSightCenter() const; //"center" tile from which the sight distance is calculated