@@ -319,7 +319,7 @@ class Player
319319 return ! this .inRace && ! this .practicing && ! this .postRace && this .client.team ! = TEAM_SPECTATOR ;
320320 }
321321
322- void setQuickMenu ()
322+ void setOverlayMenu ()
323323 {
324324 String s = ' ' ;
325325 Position @ position = this .savedPosition();
@@ -354,7 +354,7 @@ class Player
354354 menuItems[MI_CLEAR_POSITION ];
355355 }
356356
357- GENERIC_SetQuickMenu ( this .client , s );
357+ GENERIC_SetOverlayMenu ( this .client , s );
358358 }
359359
360360 bool toggleNoclip()
@@ -387,7 +387,7 @@ class Player
387387
388388 G_PrintMsg( ent, msg + " \n " );
389389
390- this .setQuickMenu ();
390+ this .setOverlayMenu ();
391391
392392 return true ;
393393 }
@@ -493,7 +493,7 @@ class Player
493493 }
494494 position.weapon = ent.moveType == MOVETYPE_NOCLIP ? this .noclipWeapon : ref .weapon ;
495495 }
496- this .setQuickMenu ();
496+ this .setOverlayMenu ();
497497
498498 return true ;
499499 }
@@ -507,7 +507,7 @@ class Player
507507 }
508508
509509 this .savedPosition().clear();
510- this .setQuickMenu ();
510+ this .setOverlayMenu ();
511511
512512 return true ;
513513 }
@@ -533,7 +533,7 @@ class Player
533533
534534 this .client .newRaceRun( numCheckpoints );
535535
536- this .setQuickMenu ();
536+ this .setOverlayMenu ();
537537
538538 return true ;
539539 }
@@ -745,7 +745,7 @@ class Player
745745 this .practicing = true ;
746746 G_CenterPrintMsg( this .client .getEnt(), S_COLOR_CYAN + " Entered practice mode" );
747747 this .cancelRace();
748- this .setQuickMenu ();
748+ this .setOverlayMenu ();
749749 }
750750
751751 void leavePracticeMode()
@@ -757,7 +757,7 @@ class Player
757757 G_CenterPrintMsg( this .client .getEnt(), S_COLOR_CYAN + " Left practice mode" );
758758 if ( this .client.team ! = TEAM_SPECTATOR )
759759 this .client .respawn( false );
760- this .setQuickMenu ();
760+ this .setOverlayMenu ();
761761 }
762762
763763 void togglePracticeMode()
@@ -1502,7 +1502,7 @@ void GT_PlayerRespawn( Entity @ent, int old_team, int new_team )
15021502 Player @ player = RACE_GetPlayer( ent.client );
15031503 player.cancelRace();
15041504
1505- player.setQuickMenu ();
1505+ player.setOverlayMenu ();
15061506
15071507 if ( ent.isGhosting() )
15081508 return ;
0 commit comments