Skip to content

Commit

Permalink
Update G5WS.sp
Browse files Browse the repository at this point in the history
Comment out onplayerdeath code as it is not yet implemented.
  • Loading branch information
PhlexPlexico authored Oct 29, 2022
1 parent 84182cb commit c5dfa82
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions scripting/G5WS.sp
Original file line number Diff line number Diff line change
Expand Up @@ -204,7 +204,7 @@ public void Get5_OnSeriesInit(const Get5SeriesStartedEvent event) {
}

// New Feat: Socket calls for OnPlayerDeath for live update.
public void Get5_OnPlayerDeath(const Get5PlayerDeathEvent event) {
/*public void Get5_OnPlayerDeath(const Get5PlayerDeathEvent event) {
char matchId[64];
char attackerSteamId[AUTH_LENGTH];
char victimSteamId[AUTH_LENGTH];
Expand All @@ -226,7 +226,7 @@ public void Get5_OnPlayerDeath(const Get5PlayerDeathEvent event) {
SteamWorks_SendHTTPRequest(req);
delete req;
}
}
}*/

public void CheckForLogo(const char[] logo) {
if (StrEqual(logo, "")) {
Expand Down Expand Up @@ -772,4 +772,4 @@ Get5Side GetClientCoachingSide(int client) {

bool IsClientCoaching(int client) {
return GetClientCoachingSide(client) != Get5Side_None;
}
}

0 comments on commit c5dfa82

Please sign in to comment.