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

Commit

Permalink
Update misc.sp
Browse files Browse the repository at this point in the history
  • Loading branch information
Riccardo H authored and Riccardo H committed Feb 16, 2019
1 parent 16430e1 commit ede06c4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions addons/sourcemod/scripting/surftimer/misc.sp
Original file line number Diff line number Diff line change
Expand Up @@ -4545,7 +4545,7 @@ public void CallAdmin(int client, char[] sText)

// Format title
char sTitle[256];
Format(sTitle, sizeof(sTitle), "Server: %s ║ Map: %s", g_sServerName, g_szMapName);
Format(sTitle, sizeof(sTitle), "Server: %s ║ Map: %s", g_sServerName, g_szMapName);
Embed.SetTitle(sTitle);

// Format player
Expand All @@ -4554,7 +4554,7 @@ public void CallAdmin(int client, char[] sText)

// Format msg
char sMessage[512];
Format(sMessage, sizeof(sMessage), "%s (%s): %s", sName, g_szSteamID[client], sText);
Format(sMessage, sizeof(sMessage), "%s (%s): @here %s", sName, g_szSteamID[client], sText);
Embed.AddField("", sMessage, true);

hook.Embed(Embed);
Expand Down

0 comments on commit ede06c4

Please sign in to comment.