mirror of
https://github.com/Sarjuuk/aowow.git
synced 2025-11-29 15:58:16 +08:00
Misc/Fixes
* resolve more spellEffects/Auras * fixed item filter with multiple upgrade items * localized unknown spellAura/Effects text * remove unreferenced error code from image setup
This commit is contained in:
@@ -165,9 +165,9 @@ class SmartAI
|
||||
|
||||
if ($q)
|
||||
{
|
||||
$owner = DB::Aowow()->select(sprintf('SELECT `type` AS "0", `typeId` AS "1" FROM ?_spawns WHERE (%s)', implode(') OR (', $q)));
|
||||
foreach ($owner as [$ty, $id])
|
||||
$result[$ty][] = $id;
|
||||
$owner = DB::Aowow()->select(sprintf('SELECT `type`, `typeId` FROM ?_spawns WHERE (%s)', implode(') OR (', $q)));
|
||||
foreach ($owner as $o)
|
||||
$result[$o['type']][] = $o['typeId'];
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user