diff --git a/hch/CCreatureHandler.cpp b/hch/CCreatureHandler.cpp index d607e84b3..eade32c1f 100644 --- a/hch/CCreatureHandler.cpp +++ b/hch/CCreatureHandler.cpp @@ -467,6 +467,11 @@ void CCreatureHandler::loadCreatures() { int id, lvl; ifs >> id >> lvl; + if(lvl>0) + { + creatures[id]->level = lvl; + levelCreatures[lvl].push_back(creatures[id]); + } } } ifs.close();