Skip to content

Commit

Permalink
informer: typo
Browse files Browse the repository at this point in the history
  • Loading branch information
Mistrick committed Aug 8, 2016
1 parent 8e4e43d commit 34a26a9
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions deathrun_informer.sma
Original file line number Diff line number Diff line change
Expand Up @@ -72,17 +72,17 @@ public client_disconnect(id)
public Command_Informer(id)
{
g_bInformer[id] = !g_bInformer[id];
client_print_color(id, print_team_default, "%s^1 %L", PREFIX, LANG_PLAYER, "DRI_INFORMER_MSG", g_bInformer[id] ? "DRI_ENABLED" : "DRI_DISABLED");
client_print_color(id, print_team_default, "%s^1 %L", PREFIX, LANG_PLAYER, "DRI_INFORMER_MSG", LANG_PLAYER, g_bInformer[id] ? "DRI_ENABLED" : "DRI_DISABLED");
}
public Command_SpecList(id)
{
g_bSpecList[id] = !g_bSpecList[id];
client_print_color(id, print_team_default, "%s^1 %L", PREFIX, LANG_PLAYER, "DRI_SPECLIST_MSG", g_bSpecList[id] ? "DRI_ENABLED" : "DRI_DISABLED");
client_print_color(id, print_team_default, "%s^1 %L", PREFIX, LANG_PLAYER, "DRI_SPECLIST_MSG", LANG_PLAYER, g_bSpecList[id] ? "DRI_ENABLED" : "DRI_DISABLED");
}
public Command_Speed(id)
{
g_bSpeed[id] = !g_bSpeed[id];
client_print_color(id, print_team_default, "%s^1 %L", PREFIX, LANG_PLAYER, "DRI_SPEEDOMETER_MSG", g_bSpeed[id] ? "DRI_ENABLED" : "DRI_DISABLED");
client_print_color(id, print_team_default, "%s^1 %L", PREFIX, LANG_PLAYER, "DRI_SPEEDOMETER_MSG", LANG_PLAYER, g_bSpeed[id] ? "DRI_ENABLED" : "DRI_DISABLED");
}
//***** Events *****//
public Event_RoundStart()
Expand Down

0 comments on commit 34a26a9

Please sign in to comment.