patch the message factory to artificially append a space

This commit is contained in:
zontreck 2021-02-09 18:44:31 -07:00
parent cf6d54d72d
commit 2b246a8817
2 changed files with 3 additions and 3 deletions

View file

@ -7,7 +7,7 @@ using LibZNI;
[assembly: AssemblyCompany("ZNI")] [assembly: AssemblyCompany("ZNI")]
[assembly: AssemblyAlgorithmId(System.Configuration.Assemblies.AssemblyHashAlgorithm.MD5)] [assembly: AssemblyAlgorithmId(System.Configuration.Assemblies.AssemblyHashAlgorithm.MD5)]
[assembly: AssemblyCopyright("(C) 2020 Tara Piccari")] [assembly: AssemblyCopyright("(C) 2020 Tara Piccari")]
[assembly: AssemblyFileVersion("5.0.6.0710")] [assembly: AssemblyFileVersion("5.0.6.1710")]
[assembly: AssemblyDescription("Second Life Bot - BotCore5")] [assembly: AssemblyDescription("Second Life Bot - BotCore5")]
[assembly: AutoUpdater("/job/Bot", "!os!.tar")] [assembly: AutoUpdater("/job/Bot", "!os!.tar")]
@ -16,7 +16,7 @@ namespace Bot.Assemble
public class ASMInfo public class ASMInfo
{ {
public static string BotName = "ZBotCore"; public static string BotName = "ZBotCore";
public static string BotVer = "5.0.6.0710"; public static string BotVer = "5.0.6.1710";
public static string GitPassword public static string GitPassword
{ {
get get

View file

@ -193,7 +193,7 @@ namespace Bot
public static void Post(Destinations dest, string Msg, UUID destID, int chn = 0,string ServerName="MAP_NOT_KNOWN", string ChannelName="MAP_NOT_KNOWN",DiscordMiscDataPacket packet=null) public static void Post(Destinations dest, string Msg, UUID destID, int chn = 0,string ServerName="MAP_NOT_KNOWN", string ChannelName="MAP_NOT_KNOWN",DiscordMiscDataPacket packet=null)
{ {
Msg = Msg + " ";
Message m = null; Message m = null;
switch (dest) switch (dest)