Fixed ff trigger printing in triggerer's language to all (bug 5161, r=asherkin).

This commit is contained in:
Nicholas Hastings 2011-11-03 09:59:14 -04:00
parent f42a16643c
commit df7680aa73

View File

@ -270,23 +270,23 @@ public Action:Command_Say(client, const String:command[], argc)
{ {
if (g_Cvar_FriendlyFire != INVALID_HANDLE) if (g_Cvar_FriendlyFire != INVALID_HANDLE)
{ {
decl String:message[64]; decl String:phrase[24];
if (GetConVarBool(g_Cvar_FriendlyFire)) if (GetConVarBool(g_Cvar_FriendlyFire))
{ {
Format(message, sizeof(message), "%T", "Friendly Fire On", client); strcopy(phrase, sizeof(phrase), "Friendly Fire On");
} }
else else
{ {
Format(message, sizeof(message), "%T", "Friendly Fire Off", client); strcopy(phrase, sizeof(phrase), "Friendly Fire Off");
} }
if(GetConVarInt(g_Cvar_TriggerShow)) if(GetConVarInt(g_Cvar_TriggerShow))
{ {
PrintToChatAll("[SM] %s", message); PrintToChatAll("[SM] %t", phrase);
} }
else else
{ {
PrintToChat(client,"[SM] %s", message); PrintToChat(client,"[SM] %t", phrase);
} }
} }
} }