just using default priority

This commit is contained in:
jenz 2026-06-26 00:45:32 +02:00
parent 509bd521fb
commit ce78793029

View File

@ -115,7 +115,7 @@ public Action Command_myactivity(int client, int args)
char sQuery[1024]; char sQuery[1024];
Format(sQuery, sizeof(sQuery), "select pt.steam_id, pt.player_name, SUM(pt.ze_time) - pa.ze_time_start_week AS time_this_week from unloze_playtimestats.player_activity_ze pa inner join unloze_playtimestats.player_time pt on pa.steamid = pt.steam_id where pa.steamid = '%s' GROUP BY pt.steam_id ORDER BY time_this_week DESC limit 15", sSID); Format(sQuery, sizeof(sQuery), "select pt.steam_id, pt.player_name, SUM(pt.ze_time) - pa.ze_time_start_week AS time_this_week from unloze_playtimestats.player_activity_ze pa inner join unloze_playtimestats.player_time pt on pa.steamid = pt.steam_id where pa.steamid = '%s' GROUP BY pt.steam_id ORDER BY time_this_week DESC limit 15", sSID);
g_hDatabase.Query(SQL_my_activity, sQuery, GetClientSerial(client), DBPrio_Low); g_hDatabase.Query(SQL_my_activity, sQuery, GetClientSerial(client));
return Plugin_Handled; return Plugin_Handled;
} }