1
0
mirror of https://github.com/vcmi/vcmi.git synced 2025-06-19 00:17:56 +02:00
This commit is contained in:
Michał W. Urbańczyk
2010-02-10 21:31:54 +00:00
parent ad65664914
commit 42fade07dc
3 changed files with 11 additions and 1 deletions

View File

@ -1933,7 +1933,7 @@ void Mapa::readObjects( const unsigned char * bufor, int &i)
nobj->pos = pos;
nobj->ID = defInfo->id;
nobj->id = objects.size();
if(nobj->ID != HEROI_TYPE && nobj->ID != 214)
if(nobj->ID != HEROI_TYPE && nobj->ID != 214 && nobj->ID != 62)
nobj->subID = defInfo->subid;
nobj->defInfo = defInfo;
objects.push_back(nobj);