Fix space missing before entity.

This commit is contained in:
haiping008@gmail.com 2018-08-06 11:59:03 -05:00
parent 60844b94b2
commit 6b7f9671f3

View file

@ -102,7 +102,7 @@ namespace BotSharp.Core.Engines
Text = say.Text.Substring(entity.Start, entity.Value.Length)
});
pos = entity.End + 1;
pos = entity.End;
if (pos < say.Text.Length && entityIdx == say.Entities.Count - 1)
{