mirror of
https://github.com/ZDoom/gzdoom-gles.git
synced 2024-11-15 00:51:24 +00:00
- fixed missing 'player left the game' message
This commit is contained in:
parent
3b7ada83bf
commit
d23755f76b
1 changed files with 1 additions and 0 deletions
|
@ -1793,6 +1793,7 @@ void G_DoPlayerPop(int playernum)
|
|||
FString message = GStrings(deathmatch? "TXT_LEFTWITHFRAGS" : "TXT_LEFTTHEGAME");
|
||||
message.Substitute("%s", players[playernum].userinfo.GetName());
|
||||
message.Substitute("%d", FStringf("%d", players[playernum].fragcount));
|
||||
Printf("%s\n", message.GetChars());
|
||||
|
||||
// [RH] Revert each player to their own view if spying through the player who left
|
||||
for (int ii = 0; ii < MAXPLAYERS; ++ii)
|
||||
|
|
Loading…
Reference in a new issue