changed priority to low so that stats loading hopefully is quicker

This commit is contained in:
jenz 2023-09-03 21:20:47 +02:00
parent 8651cae482
commit 950fb9ce90

View File

@ -2388,7 +2388,7 @@ public void UpdateHideSprays()
char sQuery[512]; char sQuery[512];
Format(sQuery, sizeof(sQuery), "SELECT `steamidtarget` FROM `sprayhidemanage` WHERE `steamidhider` = '%s' and `is_online` = 1;", g_csSID[client]); Format(sQuery, sizeof(sQuery), "SELECT `steamidtarget` FROM `sprayhidemanage` WHERE `steamidhider` = '%s' and `is_online` = 1;", g_csSID[client]);
SQL_TQuery(g_hDatabase, select_sprays_to_hide, sQuery, GetClientSerial(client), DBPrio_Normal); SQL_TQuery(g_hDatabase, select_sprays_to_hide, sQuery, GetClientSerial(client), DBPrio_Low);
} }
} }