From 7bfe6b50b80938dfe4921a8b232fc96c8f410657 Mon Sep 17 00:00:00 2001 From: "haiping008@gmail.com" Date: Mon, 6 Aug 2018 11:59:03 -0500 Subject: [PATCH] Fix space missing before entity. --- BotSharp.Core/Engines/Sebis/AgentImporterInSebis.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/BotSharp.Core/Engines/Sebis/AgentImporterInSebis.cs b/BotSharp.Core/Engines/Sebis/AgentImporterInSebis.cs index 25e86fe0..1f59dd62 100644 --- a/BotSharp.Core/Engines/Sebis/AgentImporterInSebis.cs +++ b/BotSharp.Core/Engines/Sebis/AgentImporterInSebis.cs @@ -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) {