Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/master'
Browse files Browse the repository at this point in the history
# Conflicts:
#	thorn/Modules/AdminModule.cs
  • Loading branch information
Aidam7 committed Jun 1, 2021
2 parents bedffd2 + d7b52fa commit 9d929ea
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions thorn/Modules/AdminModule.cs
Original file line number Diff line number Diff line change
Expand Up @@ -152,11 +152,9 @@ private async Task AddVoteEmotes(IMessage msg)
await msg.AddReactionAsync(Emote.Parse(_pairs.GetString("YES_EMOTE")));
await msg.AddReactionAsync(Emote.Parse(_pairs.GetString("NO_EMOTE")));
await msg.AddReactionAsync(Emote.Parse(_pairs.GetString("ABSTAIN_EMOTE")));

// I swear to god, since when are there 2 different eye emojis?
//await msg.AddReactionAsync(new Emoji("👁️")); This one doesn't work, I think
//Just found out that the emoji is made up of two characters
//why
//It seems like removing a character from "👁️" turns it into "👁"
// await msg.AddReactionAsync(new Emoji("👁️")); This one doesn't work, I think
await msg.AddReactionAsync(new Emoji("👁"));
}
}
Expand Down

0 comments on commit 9d929ea

Please sign in to comment.