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 11, 2019
1 parent 6d61bdc commit 16430e1
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions addons/sourcemod/scripting/surftimer/misc.sp
Original file line number Diff line number Diff line change
Expand Up @@ -4503,13 +4503,13 @@ public void SendBugReport(int client)
DiscordWebHook hook = new DiscordWebHook(webhook);
hook.SlackMode = true;

hook.SetUsername("SurfTimer Bugtracker");
hook.SetUsername("z4lab Bugtracker");

MessageEmbed Embed = new MessageEmbed();

// Format Title
char sTitle[256];
Format(sTitle, sizeof(sTitle), "Bug Type: %s || Server: %s || Map: %s", g_sBugType[client], g_sServerName, g_szMapName);
Format(sTitle, sizeof(sTitle), "Bug Type: %s Server: %s Map: %s", g_sBugType[client], g_sServerName, g_szMapName);
Embed.SetTitle(sTitle);

// Format Player
Expand Down Expand Up @@ -4539,13 +4539,13 @@ public void CallAdmin(int client, char[] sText)
DiscordWebHook hook = new DiscordWebHook(webhook);
hook.SlackMode = true;

hook.SetUsername("SurfTimer Calladmin");
hook.SetUsername("z4lab Calladmin");

MessageEmbed Embed = new MessageEmbed();

// 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 Down

0 comments on commit 16430e1

Please sign in to comment.