fix(DB/Event): missing Ironforge Argent Quartermaster (#22810)

Co-authored-by: Orozxy <crusadermeile@gmail.com>
This commit is contained in:
Jelle Meeus
2025-09-06 00:45:00 -07:00
committed by GitHub
parent 82454c2261
commit 2ac43d1722

View File

@@ -0,0 +1,8 @@
--
SET @CGUID:=12891;
DELETE FROM `creature` WHERE (`id1` = 16786) AND (`guid` = (@CGUID));
INSERT INTO `creature` (`guid`, `id1`, `id2`, `id3`, `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`, `ScriptName`, `Comment`, `VerifiedBuild`) VALUES
(@CGUID, 16786, 0, 0, 0, 0, 0, 1, 1, 0, -4926.95, -981.718, 501.55, 2.0071299076080322, 120, 0, 0, 1, 0, 0, 0, 0, 0, '', '', 0);
DELETE FROM `game_event_creature` WHERE `guid` = @CGUID;
INSERT INTO `game_event_creature` (`eventEntry`, `guid`) VALUES(17, @CGUID);