few changes

- added emojis
- added bold to tests
- removed `highlight`.
- changed `Auto assigned role is set.` to  **Auto assign role** on user join is now **enabled**. respect to its disabled text.
This commit is contained in:
samvaio 2016-11-21 02:38:05 +05:30 committed by GitHub
parent a51475fbed
commit 11fe90d589

View File

@ -69,11 +69,11 @@ namespace NadekoBot.Modules.Administration
if (role == null)
{
await channel.SendMessageAsync("`Auto assign role on user join is now disabled.`").ConfigureAwait(false);
await channel.SendMessageAsync("🆗 **Auto assign role** on user join is now **disabled**.").ConfigureAwait(false);
return;
}
await channel.SendMessageAsync("`Auto assigned role is set.`").ConfigureAwait(false);
await channel.SendMessageAsync("✅ **Auto assign role** on user join is now **enabled**.").ConfigureAwait(false);
}
}
}