From 2eae0c557719f780f31f6d52a56e9603b9bf1bb0 Mon Sep 17 00:00:00 2001 From: evil-at-wow Date: Mon, 27 May 2024 21:54:09 +0200 Subject: [PATCH] Fix missing object needed for quest 8924 Hunting for Ectoplasm Resolves https://github.com/cmangos/tbc-db/pull/1190 --- Updates/0422_ectoplasmic_distiller.sql | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 Updates/0422_ectoplasmic_distiller.sql diff --git a/Updates/0422_ectoplasmic_distiller.sql b/Updates/0422_ectoplasmic_distiller.sql new file mode 100644 index 000000000..fce3a36a5 --- /dev/null +++ b/Updates/0422_ectoplasmic_distiller.sql @@ -0,0 +1,6 @@ +-- https://github.com/cmangos/tbc-db/pull/1190 +-- Add missing Ectoplasmic Distiller object. +DELETE FROM `gameobject_template` WHERE entry = 181057; +INSERT INTO `gameobject_template` (`entry`, `type`, `displayId`, `name`, `faction`, `flags`, `ExtraFlags`, `size`, `data0`, `data1`, `data2`, `data3`, `data4`, `data5`, `data6`, `data7`, `data8`, `data9`, `data10`, `data11`, `data12`, `data13`, `data14`, `data15`, `data16`, `data17`, `data18`, `data19`, `data20`, `data21`, `data22`, `data23`, `CustomData1`, `mingold`, `maxgold`, `StringId`, `ScriptName`) VALUES +(181057, 8, 6659, 'Ectoplasmic Distiller', 0, 0, 0, 1.4, 0, 10, 181054, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, ''); +