Skip to content
This repository has been archived by the owner on Oct 6, 2020. It is now read-only.

Commit

Permalink
change world to server record
Browse files Browse the repository at this point in the history
  • Loading branch information
totles committed Feb 16, 2019
1 parent 00111b5 commit 4b4d2fd
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions addons/sourcemod/scripting/surftimer/commands.sp
Original file line number Diff line number Diff line change
Expand Up @@ -2833,9 +2833,9 @@ public void CentreHudModulesMenu(int client, int module, const char[] szTitle)

// WR
if (g_iCentreHudModule[client][module] == 2)
AddMenuItem(menu, szTitle, "[ON] World Record");
AddMenuItem(menu, szTitle, "[ON] Server Record");
else
AddMenuItem(menu, szTitle, "[OFF] World Record");
AddMenuItem(menu, szTitle, "[OFF] Server Record");

// PB
if (g_iCentreHudModule[client][module] == 3)
Expand Down Expand Up @@ -2983,9 +2983,9 @@ public void SideHudModulesMenu(int client, int module, char[] szTitle)

// WR
if (g_iSideHudModule[client][module] == 2)
AddMenuItem(menu, szTitle, "[ON] World Record Info");
AddMenuItem(menu, szTitle, "[ON] Server Record Info");
else
AddMenuItem(menu, szTitle, "[OFF] World Record Info");
AddMenuItem(menu, szTitle, "[OFF] Server Record Info");

// PB
if (g_iSideHudModule[client][module] == 3)
Expand Down

0 comments on commit 4b4d2fd

Please sign in to comment.