From ce78793029fa27c7c843ffcbcf741c2bc2dfd402 Mon Sep 17 00:00:00 2001 From: jenz Date: Fri, 26 Jun 2026 00:45:32 +0200 Subject: [PATCH] just using default priority --- topactivity/scripting/top_activitiy.sp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/topactivity/scripting/top_activitiy.sp b/topactivity/scripting/top_activitiy.sp index 8bd291b..90893bb 100644 --- a/topactivity/scripting/top_activitiy.sp +++ b/topactivity/scripting/top_activitiy.sp @@ -115,7 +115,7 @@ public Action Command_myactivity(int client, int args) 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); - g_hDatabase.Query(SQL_my_activity, sQuery, GetClientSerial(client), DBPrio_Low); + g_hDatabase.Query(SQL_my_activity, sQuery, GetClientSerial(client)); return Plugin_Handled; }