mirror of
https://github.com/KartKrewDev/RingRacers.git
synced 2025-10-30 08:01:28 +00:00
Can open chat again. Also fix missing braces in menudef...
This commit is contained in:
parent
9eb7ae3cff
commit
9b2fe3182d
2 changed files with 3 additions and 5 deletions
|
|
@ -1241,8 +1241,7 @@ boolean HU_Responder(event_t *ev)
|
|||
if (!chat_on)
|
||||
{
|
||||
// enter chat mode
|
||||
#if 0
|
||||
if ((ev->data1 == gamecontrol[0][gc_talkkey][0] || ev->data1 == gamecontrol[0][gc_talkkey][1])
|
||||
if ((ev->data1 == gamecontrol[0][gc_talk][0] || ev->data1 == gamecontrol[0][gc_talk][1])
|
||||
&& netgame && !OLD_MUTE) // check for old chat mute, still let the players open the chat incase they want to scroll otherwise.
|
||||
{
|
||||
chat_on = true;
|
||||
|
|
@ -1252,7 +1251,7 @@ boolean HU_Responder(event_t *ev)
|
|||
typelines = 1;
|
||||
return true;
|
||||
}
|
||||
if ((ev->data1 == gamecontrol[0][gc_teamkey][0] || ev->data1 == gamecontrol[0][gc_teamkey][1])
|
||||
if ((ev->data1 == gamecontrol[0][gc_teamtalk][0] || ev->data1 == gamecontrol[0][gc_teamtalk][1])
|
||||
&& netgame && !OLD_MUTE)
|
||||
{
|
||||
chat_on = true;
|
||||
|
|
@ -1262,7 +1261,6 @@ boolean HU_Responder(event_t *ev)
|
|||
typelines = 1;
|
||||
return true;
|
||||
}
|
||||
#endif
|
||||
}
|
||||
else // if chat_on
|
||||
{
|
||||
|
|
|
|||
|
|
@ -315,7 +315,7 @@ menuitem_t PLAY_MP_JoinIP[] =
|
|||
NULL, {.cvar = &cv_dummyip}, 0, 0},
|
||||
|
||||
{IT_STRING, "CONNECT ", "Attempt to connect to the server you entered the IP for.",
|
||||
NULL, NULL, 0, 0},
|
||||
NULL, {NULL}, 0, 0},
|
||||
|
||||
{IT_STRING | IT_SPACE, "LAST IPs JOINED:", "Kanade best waifu :)",
|
||||
NULL, {NULL}, 0, 0},
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue