mirror of
https://github.com/OpenTTD/OpenTTD.git
synced 2025-01-24 16:09:30 +00:00
(svn r1184) -Fix: [Network] %p as chat message no longer gives funny result (tnx to
GeniusDex (that makes 10 ;)))
This commit is contained in:
parent
7e61a04785
commit
36ce6a7e4f
@ -157,8 +157,8 @@ void CDECL NetworkTextMessage(NetworkAction action, uint16 color, bool self_send
|
||||
break;
|
||||
}
|
||||
|
||||
IConsolePrintF(color, message);
|
||||
AddTextMessage(color, duration, message);
|
||||
IConsolePrintF(color, "%s", message);
|
||||
AddTextMessage(color, duration, "%s", message);
|
||||
}
|
||||
|
||||
// Calculate the frame-lag of a client
|
||||
|
Loading…
Reference in New Issue
Block a user