Fixing Typo

This commit is contained in:
Sean "Solao Bajiuik" Stoves 2020-08-09 09:59:57 -04:00
parent da5848adc4
commit 5bae7d8e50

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)