Skip to content

Commit

Permalink
Merge pull request #135 from bealsbe/jsh/bugfix
Browse files Browse the repository at this point in the history
Fix username changed log embed
  • Loading branch information
jkchen2 authored Dec 9, 2020
2 parents fd3dc40 + 20b27a8 commit f5f15fd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Floofbot/Services/EventLoggerService.cs
Original file line number Diff line number Diff line change
Expand Up @@ -497,7 +497,7 @@ public Task UserUpdated(SocketUser before, SocketUser userAfter)
embed.WithTitle($"👥 Username Changed | {after.Username}#{after.Discriminator}")
.WithColor(Color.Purple)
.WithDescription($"{after.Mention} | ``{after.Id}``")
.AddField("Old Username", after.Username, true)
.AddField("Old Username", before.Username, true)
.AddField("New Name", after.Username, true)
.WithFooter($"user_username_change user_namelog {after.Id}")
.WithCurrentTimestamp();
Expand Down

0 comments on commit f5f15fd

Please sign in to comment.