shavit-rankings.sp - fix table name in pg/sqlite query

This commit is contained in:
mourningsickness 2025-08-12 09:38:15 -07:00 committed by GitHub
parent e7a0e66ec4
commit 69b13bce5a
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -422,7 +422,7 @@ public void OnClientAuthorized(int client, const char[] auth)
else // postgresql & sqlite
{
FormatEx(sQuery, 512,
"INSERT INTO %susers (auth, style, points) VALUES (%d, %d, 0) ON CONFLICT DO NOTHING;",
"INSERT INTO %sstylepoints (auth, style, points) VALUES (%d, %d, 0) ON CONFLICT DO NOTHING;",
gS_MySQLPrefix, iSteamID, i);
}