Fixed: Crash if spawnBot is NULL
This commit is contained in:
parent
bebae652cc
commit
a9f05efe06
1 changed files with 3 additions and 1 deletions
|
@ -1686,7 +1686,9 @@ NLMISC_COMMAND(getDatasetId,"get datasetid of bots with name matchiong the given
|
||||||
FOREACH(itBot, vector<CBot*>, bots)
|
FOREACH(itBot, vector<CBot*>, bots)
|
||||||
{
|
{
|
||||||
CBot* bot = *itBot;
|
CBot* bot = *itBot;
|
||||||
DatasetIds += bot->getSpawnObj()->dataSetRow().toString()+"|";
|
CSpawnBot* spawnBot = bot->getSpawnObj();
|
||||||
|
if (spawnBot!=NULL)
|
||||||
|
DatasetIds += spawnBot->dataSetRow().toString()+"|";
|
||||||
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue