Add target arg to LogAction in basechat sm_psay. (#690)

This commit is contained in:
Andrew
2017-09-23 10:45:41 -07:00
committed by Kyle Sanderson
parent 4e996a116d
commit 54565c92f7
+1 -1
View File
@@ -392,7 +392,7 @@ void SendPrivateChat(int client, int target, const char[] message)
}
PrintToChat(target, "\x04(Private to %N) %N: \x01%s", target, client, message);
LogAction(client, -1, "\"%L\" triggered sm_psay to \"%L\" (text %s)", client, target, message);
LogAction(client, target, "\"%L\" triggered sm_psay to \"%L\" (text %s)", client, target, message);
}
void SendPanelToAll(int from, char[] message)