mirror of
https://gitlab.com/OpenMW/openmw.git
synced 2025-04-10 15:45:37 +00:00
Merge pull request #1270 from Allofich/scriptfix
Check for NULL before running voice dialogue scripts
This commit is contained in:
commit
0737d6cb72
@ -646,10 +646,9 @@ namespace MWDialogue
|
|||||||
winMgr->messageBox(info->mResponse);
|
winMgr->messageBox(info->mResponse);
|
||||||
if (!info->mSound.empty())
|
if (!info->mSound.empty())
|
||||||
sndMgr->say(actor, info->mSound);
|
sndMgr->say(actor, info->mSound);
|
||||||
|
if (!info->mResultScript.empty())
|
||||||
|
executeScript(info->mResultScript, actor);
|
||||||
}
|
}
|
||||||
|
|
||||||
if (!info->mResultScript.empty())
|
|
||||||
executeScript(info->mResultScript, actor);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
int DialogueManager::countSavedGameRecords() const
|
int DialogueManager::countSavedGameRecords() const
|
||||||
|
Loading…
x
Reference in New Issue
Block a user