removed obsolete repository and updated some plugins DB priority level

This commit is contained in:
jenz
2023-02-19 16:00:26 +01:00
parent 7223eaee5f
commit 3c32ca861d
4 changed files with 5 additions and 177 deletions
+3 -3
View File
@@ -2374,7 +2374,7 @@ public Action Timer_UpdateHideSprays(Handle hTimer)
char sQuery[512];
Format(sQuery, sizeof(sQuery), "SELECT `steamidtarget` FROM `sprayhidemanage` WHERE `steamidhider` = '%s' and `is_online` = 1;", sAuthID);
SQL_TQuery(g_hDatabase, select_sprays_to_hide, sQuery, client, DBPrio_High);
SQL_TQuery(g_hDatabase, select_sprays_to_hide, sQuery, client, DBPrio_Normal);
}
}
@@ -2956,7 +2956,7 @@ void UpdatePlayerInfo(int client)
GetClientAuthId(client, AuthId_Steam2, sSteamID, sizeof(sSteamID));
Format(sQuery, sizeof(sQuery), "SELECT * FROM `spraymanager` WHERE `steamid` = '%s';", sSteamID);
SQL_TQuery(g_hDatabase, OnSQLCheckBanQuery, sQuery, client, DBPrio_High);
SQL_TQuery(g_hDatabase, OnSQLCheckBanQuery, sQuery, client, DBPrio_Normal);
}
void UpdateSprayHashInfo(int client)
@@ -2970,7 +2970,7 @@ void UpdateSprayHashInfo(int client)
char sSprayQuery[128];
Format(sSprayQuery, sizeof(sSprayQuery), "SELECT * FROM `sprayblacklist` WHERE `sprayhash` = '%s';", g_sSprayHash[client]);
SQL_TQuery(g_hDatabase, OnSQLCheckSprayHashBanQuery, sSprayQuery, client, DBPrio_High);
SQL_TQuery(g_hDatabase, OnSQLCheckSprayHashBanQuery, sSprayQuery, client, DBPrio_Normal);
}
void UpdateNSFWInfo(int client)