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

Commit

Permalink
Console: Fixed tell's output a bit
Browse files Browse the repository at this point in the history
  • Loading branch information
fgsfdsfgs committed Jan 2, 2016
1 parent 58ebe04 commit 90704c2
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions DF Sources/g_game.pas
Expand Up @@ -4567,7 +4567,11 @@ procedure GameCommands(P: SArray);

pl := g_Net_Client_ByName(P[1]);
if pl <> nil then
begin
g_Console_Add('-> ' + P[1] + ': ' + chstr, True);
e_WriteLog('[Tell ' + P[1] + '] ' + chstr, MSG_NOTIFY);
MH_SEND_Chat(chstr, pl^.ID)
end
else
g_Console_Add(Format(_lc[I_NET_ERR_NAME404], [P[1]]));
end
Expand Down

0 comments on commit 90704c2

Please sign in to comment.