Skip to content

Commit

Permalink
Fix DNA Scanner bug
Browse files Browse the repository at this point in the history
  • Loading branch information
Bara committed Jul 22, 2018
1 parent e56aad3 commit 36bb6f9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion addons/sourcemod/scripting/ttt/ttt_dnascanner.sp
Expand Up @@ -304,7 +304,7 @@ public Action TTT_OnBodyChecked(int client, int[] iRagdollC)
{
g_iCount[client]++;

if (g_iCount[client] == 3)
if (g_iCount[client] >= g_cFreeCount.IntValue)
{
ResetScanner(client);
}
Expand Down

0 comments on commit 36bb6f9

Please sign in to comment.