Browse Source

Fixed single character Say text not parsing correctly

master
chrisgregan 10 years ago
parent
commit
7441fcdcd6
  1. 7
      Assets/Fungus/Narrative/Scripts/DialogParser.cs

7
Assets/Fungus/Narrative/Scripts/DialogParser.cs

@ -68,10 +68,13 @@ namespace Fungus
m = m.NextMatch();
}
if (position < storyText.Length - 1)
if (position < storyText.Length)
{
string postText = storyText.Substring(position, storyText.Length - position);
AddWordsToken(tokens, postText);
if (postText.Length > 0)
{
AddWordsToken(tokens, postText);
}
}
}

Loading…
Cancel
Save