Crash safely with an error when sphrase is missing on client
This commit is contained in:
parent
47e5e587ad
commit
1f786418a7
1 changed files with 7 additions and 5 deletions
|
@ -4513,7 +4513,9 @@ uint32 CSPhraseManager::getTotalActionMalus(const CSPhraseCom &phrase) const
|
|||
if (!phrase.Bricks.empty())
|
||||
{
|
||||
CSBrickSheet *rootBrick = pBM->getBrick(phrase.Bricks[0]);
|
||||
if(actMalus && !rootBrick->isSpecialPower())
|
||||
if (!rootBrick)
|
||||
nlerror("Invalid root sbrick in sphrase_com '%s'", phrase.Name.toUtf8().c_str());
|
||||
else if (actMalus && !rootBrick->isSpecialPower())
|
||||
totalActionMalus = actMalus->getValue32();
|
||||
}
|
||||
return totalActionMalus;
|
||||
|
|
Loading…
Reference in a new issue