Merge branch 'develop' into 'master'

Fixing Typo

See merge request discord-bots/chaosbot!11
This commit is contained in:
Sean "Solao Bajiuik" Stoves 2020-08-09 10:00:21 -04:00
commit dbb2d52bec

View File

@ -88,10 +88,10 @@ namespace ChaosBot.Discord.Services
{ {
ulong channelId = Convert.ToUInt64(ConfigSet.Substring(2, ConfigSet.Length - 3)); ulong channelId = Convert.ToUInt64(ConfigSet.Substring(2, ConfigSet.Length - 3));
await context.Guild.GetTextChannel(channelId).SendMessageAsync( await context.Guild.GetTextChannel(channelId).SendMessageAsync(
$"Grats <@{usrExperience.DiscordGuildId}>! You have reached level {curLevel} :wot:"); $"Grats <@{usrExperience.DiscordUserId}>! You have reached level {curLevel} :wot:");
} }
else else
await context.Channel.SendMessageAsync($"Grats <@{usrExperience.DiscordGuildId}>! You have reached level {curLevel} :wot:"); await context.Channel.SendMessageAsync($"Grats <@{usrExperience.DiscordUserId}>! You have reached level {curLevel} :wot:");
} }
} }
catch (Exception ex) catch (Exception ex)