Skip to content

Commit

Permalink
Fixed Steam Level check not processing if player was whitelisted
Browse files Browse the repository at this point in the history
  • Loading branch information
azalty committed Jan 5, 2023
1 parent f201306 commit 3adc3ef
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Binary file modified plugins/no_dupe_account.smx
Binary file not shown.
4 changes: 2 additions & 2 deletions scripting/no_dupe_account.sp
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
#include <steamworks>
#include <discord>

#define PLUGIN_VERSION "1.5.1"
#define PLUGIN_VERSION "1.5.2 Beta 1"

#define AMOUNT_METHODS 14 // total amount of methods in the config file

Expand Down Expand Up @@ -967,7 +967,7 @@ public void OnClientPostAdminCheck(int client)
else
CheckSteamLevel(client);
}
else if (cvarPlaytime.IntValue > 0)
else if (cvarSteamLevel.IntValue > 0)
{
g_iClientChecks[client]--;
ProcessChecks(client);
Expand Down

0 comments on commit 3adc3ef

Please sign in to comment.