From fdee8e46850ab42a3da79c29539d743415eb7707 Mon Sep 17 00:00:00 2001 From: samvaio Date: Sat, 26 Nov 2016 20:35:56 +0530 Subject: [PATCH] Update Games.cs - emojis added supporting on ios and android --- src/NadekoBot/Modules/Games/Games.cs | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/NadekoBot/Modules/Games/Games.cs b/src/NadekoBot/Modules/Games/Games.cs index 529d8082..39d6e8a6 100644 --- a/src/NadekoBot/Modules/Games/Games.cs +++ b/src/NadekoBot/Modules/Games/Games.cs @@ -48,7 +48,7 @@ namespace NadekoBot.Modules.Games if (string.IsNullOrWhiteSpace(question)) return; var rng = new NadekoRandom(); - await channel.SendMessageAsync($@"❔ `Question` __**{question}**__ + await channel.SendMessageAsync($@"❓ `Question` __**{question}**__ 🎱 `8Ball Answers` __**{_8BallResponses.Shuffle().FirstOrDefault()}**__").ConfigureAwait(false); } @@ -91,13 +91,13 @@ namespace NadekoBot.Modules.Games var nadekoPick = new NadekoRandom().Next(0, 3); var msg = ""; if (pick == nadekoPick) - msg = $"It's a draw! Both picked :{GetRPSPick(pick)}:"; + msg = $"It's a draw! Both picked {GetRPSPick(pick)}"; else if ((pick == 0 && nadekoPick == 1) || (pick == 1 && nadekoPick == 2) || (pick == 2 && nadekoPick == 0)) - msg = $"{NadekoBot.Client.GetCurrentUser().Mention} won! :{GetRPSPick(nadekoPick)}: beats :{GetRPSPick(pick)}:"; + msg = $"{NadekoBot.Client.GetCurrentUser().Mention} won! {GetRPSPick(nadekoPick)} beats {GetRPSPick(pick)}"; else - msg = $"{umsg.Author.Mention} won! :{GetRPSPick(pick)}: beats :{GetRPSPick(nadekoPick)}:"; + msg = $"{umsg.Author.Mention} won! {GetRPSPick(pick)}: beats {GetRPSPick(nadekoPick)}"; await channel.SendMessageAsync(msg).ConfigureAwait(false); }