mirror of
https://git.do.srb2.org/KartKrew/Kart-Public.git
synced 2025-02-21 03:11:24 +00:00
Chat messages in the waiting for players screen!
This commit is contained in:
parent
cbfa6bbe83
commit
81f9657f31
2 changed files with 3 additions and 1 deletions
|
@ -390,6 +390,7 @@ static void D_Display(void)
|
|||
// The clientconnect drawer is independent...
|
||||
// I don't think HOM from nothing drawing is independent...
|
||||
F_WaitingPlayersDrawer();
|
||||
HU_Drawer();
|
||||
case GS_DEDICATEDSERVER:
|
||||
case GS_NULL:
|
||||
break;
|
||||
|
|
|
@ -1905,7 +1905,7 @@ boolean G_Responder(event_t *ev)
|
|||
else if (gamestate == GS_GAMEEND || gamestate == GS_EVALUATION || gamestate == GS_CREDITS)
|
||||
return true;
|
||||
|
||||
else if (gamestate == GS_INTERMISSION || gamestate == GS_VOTING)
|
||||
else if (gamestate == GS_INTERMISSION || gamestate == GS_VOTING || gamestate == GS_WAITINGPLAYERS)
|
||||
if (HU_Responder(ev))
|
||||
return true; // chat ate the event
|
||||
|
||||
|
@ -2162,6 +2162,7 @@ void G_Ticker(boolean run)
|
|||
break;
|
||||
case GS_WAITINGPLAYERS:
|
||||
F_WaitingPlayersTicker();
|
||||
HU_Ticker();
|
||||
break;
|
||||
|
||||
case GS_DEDICATEDSERVER:
|
||||
|
|
Loading…
Reference in a new issue