From 9dcb0b3a159f6aa072b8999034cad331a5b09244 Mon Sep 17 00:00:00 2001 From: Sarjuuk Date: Sun, 8 Apr 2018 11:28:46 +0200 Subject: [PATCH] Profiler/Mounts * display class-specific mounts on their respective classes --- setup/tools/filegen/profiler.func.php | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/setup/tools/filegen/profiler.func.php b/setup/tools/filegen/profiler.func.php index 7b7594e2..3323f247 100644 --- a/setup/tools/filegen/profiler.func.php +++ b/setup/tools/filegen/profiler.func.php @@ -171,6 +171,11 @@ if (!CLI) else $data['side'] = SIDE_BOTH; + rsort($data['skill']); // riding (777) expected at pos 0 + + if ($id == 54729) // special case: Winged Steed of the Ebon Blade; cast-item is DK only + $data['reqclass'] = CLASS_DEATHKNIGHT; + $data['quality'] = $data['name'][0]; $data['name'] = mb_substr($data['name'], 1); $buff .= '_['.$id.'] = '.Util::toJSON($data).";\n";