prettier pause message - thx kong

This commit is contained in:
Kwoth 2016-12-14 19:26:48 +01:00
parent c0149127fd
commit 4d2b8dbb9e

View File

@ -813,9 +813,9 @@ namespace NadekoBot.Modules.Music
try try
{ {
if (paused) if (paused)
await textCh.SendMessageAsync("🎵`Music Player paused.`").ConfigureAwait(false); await textCh.SendMessageAsync("🎵`Music playback paused.`").ConfigureAwait(false);
else else
await textCh.SendMessageAsync("🎵`Music Player unpaused.`").ConfigureAwait(false); await textCh.SendMessageAsync("🎵`Music playback resumed.`").ConfigureAwait(false);
} }
catch { } catch { }
}; };