From 2429c05d814dda2e0a1b953f134b4ddd70b8c9e1 Mon Sep 17 00:00:00 2001 From: Benjamin Jackson <38561765+heyitsbench@users.noreply.github.com> Date: Fri, 28 Jun 2024 19:33:10 -0400 Subject: [PATCH] fix(DB/Midsummer): Add missing slippery floor bunny. (#19217) * Init. * Add to event. --- .../updates/pending_db_world/missing-ahune-ice-bunny.sql | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 data/sql/updates/pending_db_world/missing-ahune-ice-bunny.sql diff --git a/data/sql/updates/pending_db_world/missing-ahune-ice-bunny.sql b/data/sql/updates/pending_db_world/missing-ahune-ice-bunny.sql new file mode 100644 index 000000000..0241e3993 --- /dev/null +++ b/data/sql/updates/pending_db_world/missing-ahune-ice-bunny.sql @@ -0,0 +1,9 @@ +DELETE FROM `creature` WHERE `guid` = 1554 AND `id1` = 25952; +INSERT INTO `creature` (`guid`, `id1`, `map`, `zoneId`, `areaId`, `spawnMask`, `phaseMask`, `equipment_id`, `position_x`, `position_y`, `position_z`, `orientation`, `spawntimesecs`, `wander_distance`, `currentwaypoint`, `curhealth`, `curmana`, `MovementType`, `npcflag`, `unit_flags`, `dynamicflags`, `VerifiedBuild`) VALUES +(1554, 25952, 547, 3717, 3717, 3, 1, 0, -97.468841552734375, -231.198196411132812, -2.10892963409423828, 1.466076612472534179, 7200, 0, 0, 42, 0, 0, 0, 0, 0, 55141); + +UPDATE `creature_template_movement` SET `Flight` = 1 WHERE `CreatureId` = 25952; + +DELETE FROM `game_event_creature` WHERE `eventEntry` = 1 AND `guid` = 1554; +INSERT INTO `game_event_creature` (`eventEntry`, `guid`) VALUES +(1, 1554);