TITANIC: Fix parser crash giving the same response multiple times

This commit is contained in:
Paul Gilbert 2016-11-06 17:14:31 -05:00
parent 23f606a7a3
commit 071a032447

View File

@ -131,7 +131,7 @@ void TTconcept::setScriptType(ScriptType scriptType) {
int TTconcept::initializeWordRef(TTword *word) {
delete _wordP;
_wordP = word;
_wordP = word->copy();
return 0;
}