Skip to content
This repository has been archived by the owner on May 6, 2023. It is now read-only.

Commit

Permalink
Made a few more important messages bold
Browse files Browse the repository at this point in the history
  • Loading branch information
KarlOfDuty committed Jul 20, 2018
1 parent 859f62e commit 73c4c97
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions SCPDiscordPlugin/RoundEventHandler.cs
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ public void OnRoundStart(RoundStartEvent ev)
/// <summary>
/// This is the event handler for Round start events (before people are spawned in)
/// </summary>
plugin.SendMessageAsync(plugin.GetConfigString("discord_channel_onroundstart"), "Round started.");
plugin.SendMessageAsync(plugin.GetConfigString("discord_channel_onroundstart"), "**Round started.**");
}

public void OnConnect(ConnectEvent ev)
Expand Down Expand Up @@ -65,7 +65,7 @@ public void OnWaitingForPlayers(WaitingForPlayersEvent ev)
/// <summary>
/// This event handler will call when the server is waiting for players
/// </summary>
plugin.SendMessageAsync(plugin.GetConfigString("discord_channel_onwaitingforplayers"), "Server is ready and waiting for players.");
plugin.SendMessageAsync(plugin.GetConfigString("discord_channel_onwaitingforplayers"), "**Server is ready and waiting for players.**");
}

public void OnRoundRestart(RoundRestartEvent ev)
Expand Down
4 changes: 2 additions & 2 deletions SCPDiscordPlugin/TeamEventHandler.cs
Original file line number Diff line number Diff line change
Expand Up @@ -27,11 +27,11 @@ public void OnTeamRespawn(TeamRespawnEvent ev)
/// <summary>
if (!ev.SpawnChaos)
{
plugin.SendMessageAsync(plugin.GetConfigString("discord_channel_onteamrespawn"), "MTF Epsilon-11 - \"Nine-Tailed Fox\" have arrived at the facility.");
plugin.SendMessageAsync(plugin.GetConfigString("discord_channel_onteamrespawn"), "**MTF Epsilon-11 - \"Nine-Tailed Fox\" have arrived at the facility.**");
}
else
{
plugin.SendMessageAsync(plugin.GetConfigString("discord_channel_onteamrespawn"), "Hostile incursion detected, intruders identified as members of hostile GOI \"Chaos Insurgency\".");
plugin.SendMessageAsync(plugin.GetConfigString("discord_channel_onteamrespawn"), "**Hostile incursion detected, intruders identified as members of hostile GOI \"Chaos Insurgency\".**");
}
}

Expand Down

0 comments on commit 73c4c97

Please sign in to comment.