Skip to content

Commit

Permalink
merge into master
Browse files Browse the repository at this point in the history
  • Loading branch information
kice committed Feb 1, 2019
2 parents f34d234 + 193e925 commit 584e000
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions addons/sourcemod/scripting/cookiesSpeedTest.sp
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,8 @@ public void OnClientCookiesCached(int client)
if (fEngTime_PutInServer[client] <= 0.0) {
LogToFileEx(szLogPath, "%N Cookies Loaded before PutInServer, %.2fs after connected.", client, now - fConnected[client]);
} else {
float delta1 = now - fPutInServer[client];
float delta2 = now - fConnected[client];
float delta1 = now - fConnected[client];
float delta2 = now - fPutInServer[client];
LogToFileEx(szLogPath, "%N Cookies Loaded %.2fs after connected, %.2f after PutInServer", client, delta1, delta2);
}
}
Expand Down

0 comments on commit 584e000

Please sign in to comment.