From c40bd3851bbc764e86a671268ba4d398e871ad0e Mon Sep 17 00:00:00 2001 From: Sarjuuk Date: Mon, 6 Oct 2025 16:20:55 +0200 Subject: [PATCH] Profiler/Fixup * fix scoring perm enchantments --- includes/components/profiler.class.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/includes/components/profiler.class.php b/includes/components/profiler.class.php index 48a8d0f1..943a986d 100644 --- a/includes/components/profiler.class.php +++ b/includes/components/profiler.class.php @@ -576,7 +576,7 @@ class Profiler // enchantId => multiple spells => multiple items with varying itemlevels, quality, whatevs // cant reasonably get to the castItem from enchantId and slot - $profSpec = DB::Aowow()->selectCol('SELECT `id` AS ARRAY_KEY, `skillLevel` AS "1", `skillLine` AS "0" FROM ?_itemenchantment WHERE `id` IN (?a)', $permEnch); + $profSpec = DB::Aowow()->select('SELECT `id` AS ARRAY_KEY, `skillLevel` AS "1", `skillLine` AS "0" FROM ?_itemenchantment WHERE `id` IN (?a)', $permEnch); foreach ($permEnch as $slot => $eId) { if (!isset($profSpec[$eId]))