Skip to content

Commit

Permalink
Added 👁️ reaction to .vote (Issue #27)
Browse files Browse the repository at this point in the history
  • Loading branch information
Aidam7 committed May 30, 2021
1 parent 1d279b4 commit bedffd2
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions thorn/Modules/AdminModule.cs
Original file line number Diff line number Diff line change
Expand Up @@ -154,6 +154,9 @@ private async Task AddVoteEmotes(IMessage msg)
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("👁"));
}
}
Expand Down

0 comments on commit bedffd2

Please sign in to comment.