Fix issue where new replays get saved even if done with CPs.

This commit is contained in:
shavit 2017-12-18 22:57:57 +02:00
parent e2ebae86aa
commit 09dee3ce29

View File

@ -1226,6 +1226,11 @@ public void Shavit_OnStop(int client)
public void Shavit_OnFinish(int client, int style, float time, int jumps, int strafes, float sync, int track)
{
if(Shavit_IsPracticeMode(client))
{
return;
}
gB_Record[client] = false;
float fWR = 0.0;