diff --git a/plugins/no_dupe_account.smx b/plugins/no_dupe_account.smx index 7761ed0..aefb3a8 100644 Binary files a/plugins/no_dupe_account.smx and b/plugins/no_dupe_account.smx differ diff --git a/scripting/no_dupe_account.sp b/scripting/no_dupe_account.sp index 4b17989..03fcb48 100644 --- a/scripting/no_dupe_account.sp +++ b/scripting/no_dupe_account.sp @@ -1709,6 +1709,8 @@ public void OnCheckSQLPlayer2(Handle owner, Handle hndl, char [] error, any data return; } + SQL_FetchRow(hndl); // row should always exist + g_iClientDatabaseCSGOLevel[client] = SQL_FetchInt(hndl, 0); g_iClientDatabaseCSGOCoin[client] = SQL_FetchInt(hndl, 1); g_bPrime[client] = !!SQL_FetchInt(hndl, 2); // !!int converts it to bool