Skip to content

Commit

Permalink
Merge pull request #265 from PRAWKC/patch-1
Browse files Browse the repository at this point in the history
Update ttt_radio.sp remove red Color for Traitor
  • Loading branch information
good-live committed Dec 24, 2017
2 parents e9b55fe + 01595c5 commit 6a48b82
Showing 1 changed file with 1 addition and 5 deletions.
6 changes: 1 addition & 5 deletions addons/sourcemod/scripting/ttt/ttt_radio.sp
Expand Up @@ -69,14 +69,10 @@ public Action Command_Radio(int client, int args)
char sColor[16];
int role = TTT_GetClientRole(client);

if (role == TTT_TEAM_INNOCENT)
if (role == TTT_TEAM_INNOCENT || TTT_TEAM_TRAITOR)
{
Format(sColor, sizeof(sColor), "green");
}
else if (role == TTT_TEAM_TRAITOR)
{
Format(sColor, sizeof(sColor), "darkred");
}
else if (role == TTT_TEAM_DETECTIVE)
{
Format(sColor, sizeof(sColor), "darkblue");
Expand Down

0 comments on commit 6a48b82

Please sign in to comment.