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

Commit

Permalink
Invalid data pack type workaround
Browse files Browse the repository at this point in the history
  • Loading branch information
13ace37 authored and olokos committed Apr 7, 2020
1 parent 52a6bed commit b1780ae
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion addons/sourcemod/scripting/surftimer/sql.sp
Original file line number Diff line number Diff line change
Expand Up @@ -2058,7 +2058,7 @@ public void sql_selectTopSurfersCallback(Handle owner, Handle hndl, const char[]
int client = ReadPackCell(data);
char szMap[128];
ReadPackString(data, szMap, 128);
int style = ReadPackCell(data);
int style = 0; // ReadPackCell(data);
CloseHandle(data);

char szFirstMap[128];
Expand Down

0 comments on commit b1780ae

Please sign in to comment.