Skip to content

Commit 47ff0b5

Browse files
Nyeriahclaude
andauthored
fix(DB): Use creature.id column instead of nonexistent id1/id2/id3 (#480)
The creature spawn table uses a single `id` column. Commit #114 switched all module creature queries to `id1`/`id2`/`id3`, which do not exist in the acore_world.creature schema, so the world auto-updater aborted with "Unknown column 'id1' in 'where clause'". Revert id1 -> id across all creature UPDATE/DELETE/SELECT statements and drop the id2/id3 columns (and their values) from the creature INSERTs. Co-authored-by: Claude Opus 4.8 <noreply@anthropic.com>
1 parent 441cb8a commit 47ff0b5

29 files changed

Lines changed: 86 additions & 86 deletions

File tree

src/Bracket_0/sql/world/progression_0_creature.sql

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
-- Hide Gangrenus which is accesible from exploits
2-
UPDATE `creature` SET `phasemask` = 16384 WHERE `id1`=29207 AND `guid`=125760;
2+
UPDATE `creature` SET `phasemask` = 16384 WHERE `id`=29207 AND `guid`=125760;
33

44
-- Hide Karazhan NPCs
5-
UPDATE `creature` SET `phasemask` = 16384 WHERE `id1` IN
5+
UPDATE `creature` SET `phasemask` = 16384 WHERE `id` IN
66
(
77
7370, -- Restless Shade
88
12377, -- Wailing Spectre
@@ -15,17 +15,17 @@ UPDATE `creature` SET `phasemask` = 16384 WHERE `id1` IN
1515
);
1616

1717
-- Hide the 11 cultists in Un'Goro (Bracket 70_4)
18-
UPDATE `creature` SET `phasemask` = 16384 WHERE `id1` IN (28602, 28601) AND `guid` IN (209102,209103,209104,209105,209106,209107,209108,209109,209110,209111,209112);
18+
UPDATE `creature` SET `phasemask` = 16384 WHERE `id` IN (28602, 28601) AND `guid` IN (209102,209103,209104,209105,209106,209107,209108,209109,209110,209111,209112);
1919

2020
-- Hide Emalon, Koralon and Toravon at Vault of Archavon
21-
UPDATE `creature` SET `phasemask` = 16384 WHERE `id1` IN (
21+
UPDATE `creature` SET `phasemask` = 16384 WHERE `id` IN (
2222
33993, -- Emalon
2323
35013, -- Koralon
2424
38433 -- Toravon
2525
);
2626

2727
-- Hide World Bosses
28-
UPDATE `creature` SET `phasemask` = 16384 WHERE `id1` IN (
28+
UPDATE `creature` SET `phasemask` = 16384 WHERE `id` IN (
2929
6109, -- Azuregos
3030
12397, -- Lord Kazzak
3131
14890, -- Ysondre
@@ -37,4 +37,4 @@ UPDATE `creature` SET `phasemask` = 16384 WHERE `id1` IN (
3737
);
3838

3939
-- Replace Kor'Kron Overseer with Undercity Guardian until ICC
40-
UPDATE `creature` SET `id1`=5624, `equipment_id`=0 WHERE `map`=0 AND `id1`=36213;
40+
UPDATE `creature` SET `id`=5624, `equipment_id`=0 WHERE `map`=0 AND `id`=36213;

src/Bracket_1_19/sql/world/progression_1_19_brewfest.sql

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,10 @@ DELETE FROM `item_loot_template` WHERE `Item` IN (48663, 49120, 49426) AND `Entr
55

66
UPDATE `creature_template` SET `ScriptName` = 'npc_brewfest_dungeonmaster' WHERE `entry` IN (40437, 40441);
77

8-
DELETE FROM `creature` WHERE `id1` IN (40437, 40441) AND `guid` IN (3200500, 3200501);
9-
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`, `VerifiedBuild`) VALUES
10-
(3200500,40437,0,0,1,0,0,1,1,0,1612.37,-4391.63,10.5139,3.76202,300,0,0,2215,0,0,0,0,0,'',0),
11-
(3200501,40441,0,0,0,0,0,1,1,0,-8872.23,639.728,96.0906,0.535996,300,0,0,2215,0,0,0,0,0,'',0);
8+
DELETE FROM `creature` WHERE `id` IN (40437, 40441) AND `guid` IN (3200500, 3200501);
9+
INSERT INTO `creature` (`guid`, `id`, `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`, `VerifiedBuild`) VALUES
10+
(3200500,40437,1,0,0,1,1,0,1612.37,-4391.63,10.5139,3.76202,300,0,0,2215,0,0,0,0,0,'',0),
11+
(3200501,40441,0,0,0,1,1,0,-8872.23,639.728,96.0906,0.535996,300,0,0,2215,0,0,0,0,0,'',0);
1212

1313
DELETE FROM `game_event_creature` WHERE `eventEntry` = 24 AND `guid` IN (3200500, 3200501);
1414
INSERT INTO `game_event_creature` (`eventEntry`, `guid`) VALUES

src/Bracket_1_19/sql/world/progression_1_19_love_in_air.sql

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,16 @@
11
UPDATE `creature_template` SET `ScriptName` = "npc_lita_dungeonmaster" WHERE `entry` = 40438;
22
UPDATE `creature_template` SET `ScriptName` = "npc_lita_investigator" WHERE `entry` = 38208;
33

4-
DELETE FROM `creature` WHERE `id1` = 40438 AND `guid` BETWEEN 3000001 AND 3000008;
5-
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`, `VerifiedBuild`) VALUES
6-
(3000001, 40438, 0, 0, 530, 0, 0, 1, 1, 0, 9607.96, -7181.38, 14.281, 1.29767, 300, 0, 0, 2215, 0, 0, 0, 0, 0, '', 0),
7-
(3000002, 40438, 0, 0, 0, 0, 0, 1, 1, 0, 1630.16, 242.94, 63.7057, 5.96447, 300, 0, 0, 2215, 0, 0, 0, 0, 0, '', 0),
8-
(3000003, 40438, 0, 0, 1, 0, 0, 1, 1, 0, -1227.7, 72.1031, 129.882, 3.41711, 300, 0, 0, 2215, 0, 0, 0, 0, 0, '', 0),
9-
(3000004, 40438, 0, 0, 1, 0, 0, 1, 1, 0, 1651.85, -4433.67, 17.5257, 1.526, 300, 0, 0, 2215, 0, 0, 0, 0, 0, '', 0),
10-
(3000005, 40438, 0, 0, 530, 0, 0, 1, 1, 0, -4001.34, -11847.1, 0.221773, 4.25922, 300, 0, 0, 2215, 0, 0, 0, 0, 0, '', 0),
11-
(3000006, 40438, 0, 0, 0, 0, 0, 1, 1, 0, -4923.93, -984.195, 501.458, 1.89939, 300, 0, 0, 2215, 0, 0, 0, 0, 0, '', 0),
12-
(3000007, 40438, 0, 0, 1, 0, 0, 1, 1, 0, 9872.92, 2497.57, 1315.88, 5.48987, 300, 0, 0, 2215, 0, 0, 0, 0, 0, '', 0),
13-
(3000008, 40438, 0, 0, 0, 0, 0, 1, 1, 0, -8870.44, 640.768, 96.0921, 0.318439, 300, 0, 0, 2215, 0, 0, 0, 0, 0, '', 0);
4+
DELETE FROM `creature` WHERE `id` = 40438 AND `guid` BETWEEN 3000001 AND 3000008;
5+
INSERT INTO `creature` (`guid`, `id`, `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`, `VerifiedBuild`) VALUES
6+
(3000001, 40438, 530, 0, 0, 1, 1, 0, 9607.96, -7181.38, 14.281, 1.29767, 300, 0, 0, 2215, 0, 0, 0, 0, 0, '', 0),
7+
(3000002, 40438, 0, 0, 0, 1, 1, 0, 1630.16, 242.94, 63.7057, 5.96447, 300, 0, 0, 2215, 0, 0, 0, 0, 0, '', 0),
8+
(3000003, 40438, 1, 0, 0, 1, 1, 0, -1227.7, 72.1031, 129.882, 3.41711, 300, 0, 0, 2215, 0, 0, 0, 0, 0, '', 0),
9+
(3000004, 40438, 1, 0, 0, 1, 1, 0, 1651.85, -4433.67, 17.5257, 1.526, 300, 0, 0, 2215, 0, 0, 0, 0, 0, '', 0),
10+
(3000005, 40438, 530, 0, 0, 1, 1, 0, -4001.34, -11847.1, 0.221773, 4.25922, 300, 0, 0, 2215, 0, 0, 0, 0, 0, '', 0),
11+
(3000006, 40438, 0, 0, 0, 1, 1, 0, -4923.93, -984.195, 501.458, 1.89939, 300, 0, 0, 2215, 0, 0, 0, 0, 0, '', 0),
12+
(3000007, 40438, 1, 0, 0, 1, 1, 0, 9872.92, 2497.57, 1315.88, 5.48987, 300, 0, 0, 2215, 0, 0, 0, 0, 0, '', 0),
13+
(3000008, 40438, 0, 0, 0, 1, 1, 0, -8870.44, 640.768, 96.0921, 0.318439, 300, 0, 0, 2215, 0, 0, 0, 0, 0, '', 0);
1414

1515
-- Heart Shapped Box Loot
1616
DELETE FROM `item_loot_template` WHERE `Entry` = 54537;
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
-- Enable Azuregos
2-
UPDATE `creature` SET `phaseMask` = 1 WHERE `id1`=6109;
2+
UPDATE `creature` SET `phaseMask` = 1 WHERE `id`=6109;

src/Bracket_60_2_1/sql/world/progression_60_2_1_kazzak.sql

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,9 +21,9 @@ INSERT INTO `creature_text` (`CreatureID`, `GroupID`, `ID`, `Text`, `Type`, `Lan
2121
(12397, 7, 0, 'The universe will be remade.', 14, 0, 0, 0, 0, 11339, 20083, 0, 'kazzak SAY_WIPE'),
2222
(12397, 8, 0, 'Kazzak is supreme!', 16, 0, 0, 0, 0, 0, 0, 0, 'kazzak SAY_SUPREME_VANILA');
2323

24-
DELETE FROM `creature` WHERE `guid` = 156950 AND `id1` = 12397;
25-
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`, `VerifiedBuild`) VALUES
26-
(156950, 12397, 0, 0, 0, 0, 0, 1, 1, 0, -12241.3, -2432.1, 2.93936, 3.26504, 604800, 259200, 0, 1, 0, 2, 0, 0, 0, '', 0);
24+
DELETE FROM `creature` WHERE `guid` = 156950 AND `id` = 12397;
25+
INSERT INTO `creature` (`guid`, `id`, `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`, `VerifiedBuild`) VALUES
26+
(156950, 12397, 0, 0, 0, 1, 1, 0, -12241.3, -2432.1, 2.93936, 3.26504, 604800, 259200, 0, 1, 0, 2, 0, 0, 0, '', 0);
2727

2828
DELETE FROM `reference_loot_template` WHERE `Entry` = 60000;
2929
INSERT INTO `reference_loot_template` (`Entry`, `Item`, `Reference`, `Chance`, `QuestRequired`, `LootMode`, `GroupId`, `MinCount`, `MaxCount`, `Comment`) VALUES

src/Bracket_60_2_1/sql/world/progression_60_2_1_the_masquerade.sql

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -254,8 +254,8 @@ INSERT INTO `smart_scripts` (`entryorguid`, `source_type`, `id`, `link`, `event_
254254

255255
-- Spawn Lady Katrana Prestor
256256
-- Positions are hand-made. There's a huge throne where she used to be spawned in classic...
257-
DELETE FROM `creature` WHERE `guid` = 500800 AND `id1` = 1749;
258-
INSERT INTO `creature` (`guid`, `id1`, `map`, `zoneId`, `areaId`, `spawnMask`, `phaseMask`, `equipment_id`, `position_x`, `position_y`, `position_z`, `orientation`, `spawntimesecs`, `currentwaypoint`, `curhealth`, `curmana`, `MovementType`, `npcflag`, `unit_flags`, `dynamicflags`, `ScriptName`, `VerifiedBuild`) VALUES
257+
DELETE FROM `creature` WHERE `guid` = 500800 AND `id` = 1749;
258+
INSERT INTO `creature` (`guid`, `id`, `map`, `zoneId`, `areaId`, `spawnMask`, `phaseMask`, `equipment_id`, `position_x`, `position_y`, `position_z`, `orientation`, `spawntimesecs`, `currentwaypoint`, `curhealth`, `curmana`, `MovementType`, `npcflag`, `unit_flags`, `dynamicflags`, `ScriptName`, `VerifiedBuild`) VALUES
259259
(500800, 1749, 0, 0, 0, 1, 1, 1, -8435, 335.559, 122.163, 2.56468, 300, 0, 3497, 2568, 0, 0, 0, 0, '', 0);
260260

261261
DELETE FROM `conditions` WHERE `SourceTypeOrReferenceId` = 30 AND `SourceEntry` = 1749;
@@ -265,8 +265,8 @@ INSERT INTO `conditions` (`SourceTypeOrReferenceId`, `SourceGroup`, `SourceEntry
265265

266266
UPDATE `item_template` SET `startquest` = 4264 WHERE `entry` = 11446; -- A crumpled up note
267267

268-
DELETE FROM `creature` WHERE `guid` = 500801 AND `id1` = 1748;
269-
INSERT INTO `creature` (`guid`, `id1`, `map`, `zoneId`, `areaId`, `spawnMask`, `phaseMask`, `equipment_id`, `position_x`, `position_y`, `position_z`, `orientation`, `spawntimesecs`, `currentwaypoint`, `curhealth`, `curmana`, `MovementType`, `npcflag`, `unit_flags`, `dynamicflags`, `ScriptName`, `VerifiedBuild`) VALUES
268+
DELETE FROM `creature` WHERE `guid` = 500801 AND `id` = 1748;
269+
INSERT INTO `creature` (`guid`, `id`, `map`, `zoneId`, `areaId`, `spawnMask`, `phaseMask`, `equipment_id`, `position_x`, `position_y`, `position_z`, `orientation`, `spawntimesecs`, `currentwaypoint`, `curhealth`, `curmana`, `MovementType`, `npcflag`, `unit_flags`, `dynamicflags`, `ScriptName`, `VerifiedBuild`) VALUES
270270
(500801, 1748, 0, 0, 0, 1, 1, 1, -8445.01, 329.85, 122.163, 2.12562, 300, 0, 1055700, 67740, 0, 0, 0, 0, '', 0);
271271

272272
DELETE FROM `conditions` WHERE `SourceTypeOrReferenceId` = 30 AND `SourceEntry` = 1748;

src/Bracket_60_3_1/sql/world/progression_0_creature_WorldBosses_down_2.sql

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
-- Enable Dragons of Nightmare
2-
UPDATE `creature` SET `phaseMask` = 1 WHERE `id1` IN (
2+
UPDATE `creature` SET `phaseMask` = 1 WHERE `id` IN (
33
14890, -- Ysondre
44
14889, -- Lethon
55
14888, -- Emeriss

src/Bracket_61_64/sql/world/progression_60_2_1_kazzak_down.sql

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ DELETE FROM `spell_script_names` WHERE `spell_id` = 21056;
44

55
DELETE FROM `creature_text` WHERE `CreatureID` = 12397;
66

7-
DELETE FROM `creature` WHERE `guid` = 156950 AND `id1` = 12397;
7+
DELETE FROM `creature` WHERE `guid` = 156950 AND `id` = 12397;
88
DELETE FROM `creature_addon` WHERE (`guid` IN (156950));
99

1010
DELETE FROM `reference_loot_template` WHERE `Entry` = 60000;

src/Bracket_61_64/sql/world/progression_61_64_Phase5_disables.sql

Lines changed: 17 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
-- Hide Shattered Sun Offensive NPCs and Vendors near Portal to Isle of Quel'Danas
2-
UPDATE `creature` SET `phasemask` = 16384 WHERE `id1` IN (
2+
UPDATE `creature` SET `phasemask` = 16384 WHERE `id` IN (
33
24932, -- Exarch Naasun
44
27667, -- Anwehu (Badge Vendor)
55
27666, -- Ontuvo (Jewelcrafting Vendor)
@@ -9,7 +9,7 @@ UPDATE `creature` SET `phasemask` = 16384 WHERE `id1` IN (
99
25140, -- Lord Torvos
1010
19202 -- Emissary Mordin
1111
);
12-
UPDATE `creature` SET `phasemask` = 16384 WHERE `id1` IN (
12+
UPDATE `creature` SET `phasemask` = 16384 WHERE `id` IN (
1313
24938, -- Shattered Sun Marksman
1414
25115 -- Shattered Sun Warrior
1515
) AND `guid` IN (96656, 96593);
@@ -19,25 +19,25 @@ UPDATE `creature_template` SET `faction` = 1743 WHERE `entry` IN (19216, 19475);
1919

2020
-- Change Ids of Shattered Sun Offensive NPCs in Shattrath
2121
-- Shattered Sun Marksman (24938) to Veteran Vindicator (19165)
22-
UPDATE `creature` SET `id1`=19165 WHERE `id1`=24938 AND `guid` IN (96658, 96657);
22+
UPDATE `creature` SET `id`=19165 WHERE `id`=24938 AND `guid` IN (96658, 96657);
2323
-- Shattered Sun Marksman (25142) to Aldor Marksman (19337)
24-
UPDATE `creature` SET `id1`=19337 WHERE `id1`=25142 AND `guid` IN (96622, 96623, 96624, 96625, 96626, 96627, 96628, 96629, 96630, 96631, 96632, 96633, 96634, 96635, 96636, 96637, 96638, 96639, 96640);
24+
UPDATE `creature` SET `id`=19337 WHERE `id`=25142 AND `guid` IN (96622, 96623, 96624, 96625, 96626, 96627, 96628, 96629, 96630, 96631, 96632, 96633, 96634, 96635, 96636, 96637, 96638, 96639, 96640);
2525
-- Shattered Sun Trainee (25134) to Aldor Neophyte (19153)
26-
UPDATE `creature` SET `id1`=19153 WHERE `id1`=25134 AND `guid` IN (96595, 96596, 96597, 96598, 96599);
26+
UPDATE `creature` SET `id`=19153 WHERE `id`=25134 AND `guid` IN (96595, 96596, 96597, 96598, 96599);
2727
-- Shattered Sun Trainee (25135) to Aldor Neophyte (19153)
28-
UPDATE `creature` SET `id1`=19153 WHERE `id1`=25135 AND `guid` IN (96600, 96601, 96602);
28+
UPDATE `creature` SET `id`=19153 WHERE `id`=25135 AND `guid` IN (96600, 96601, 96602);
2929
-- Shattered Sun Trainee (25136) to Aldor Neophyte (19153)
30-
UPDATE `creature` SET `id1`=19153 WHERE `id1`=25136 AND `guid` IN (96603, 96604, 96605, 96606, 96607, 96608, 96609);
30+
UPDATE `creature` SET `id`=19153 WHERE `id`=25136 AND `guid` IN (96603, 96604, 96605, 96606, 96607, 96608, 96609);
3131
-- Shattered Sun Trainee (25137) to Aldor Neophyte (19153)
32-
UPDATE `creature` SET `id1`=19153 WHERE `id1`=25137 AND `guid` IN (96610, 96611, 96612, 96613, 96614, 96615, 96616, 96617, 96618);
32+
UPDATE `creature` SET `id`=19153 WHERE `id`=25137 AND `guid` IN (96610, 96611, 96612, 96613, 96614, 96615, 96616, 96617, 96618);
3333
-- Shattered Sun Veteran (25143) to Seasoned Vindicator (19651)
34-
UPDATE `creature` SET `id1`=19651 WHERE `id1`=25143 AND `guid` IN (96641, 96642);
34+
UPDATE `creature` SET `id`=19651 WHERE `id`=25143 AND `guid` IN (96641, 96642);
3535
-- Shattered Sun Cleric (25155) to Aldor Marksman (19337)
36-
UPDATE `creature` SET `id1`=19337 WHERE `id1`=25155 AND `guid` IN (96647, 96648, 96649, 96650, 96651, 96652);
36+
UPDATE `creature` SET `id`=19337 WHERE `id`=25155 AND `guid` IN (96647, 96648, 96649, 96650, 96651, 96652);
3737
-- Shattered Sun Magi (25153) to Aldor Anchorite (19142)
38-
UPDATE `creature` SET `id1`=19142 WHERE `id1`=25153 AND `guid` IN (96643, 96644, 96645, 96646);
38+
UPDATE `creature` SET `id`=19142 WHERE `id`=25153 AND `guid` IN (96643, 96644, 96645, 96646);
3939
-- Captain Dranarus (25138) to Seasoned Vindicator (19651)
40-
UPDATE `creature` SET `id1`=19651 WHERE `id1`=25138;
40+
UPDATE `creature` SET `id`=19651 WHERE `id`=25138;
4141

4242
-- Hide gameobjects
4343
UPDATE `gameobject` SET `phasemask` = 16384 WHERE `id` IN (
@@ -46,12 +46,12 @@ UPDATE `gameobject` SET `phasemask` = 16384 WHERE `id` IN (
4646
);
4747

4848
-- Move G'eras to their pre-2.4 position (CUSTOM: no sniff found)
49-
UPDATE `creature` SET `position_x`=-1839.880005, `position_y`=5500.600098, `position_z`=-12.427900, `orientation`=4.5 WHERE `id1`=18525;
49+
UPDATE `creature` SET `position_x`=-1839.880005, `position_y`=5500.600098, `position_z`=-12.427900, `orientation`=4.5 WHERE `id`=18525;
5050
-- Move G'eras Vindicators to their pre-2.4 positions (CUSTOM: no sniff found)
51-
UPDATE `creature` SET `position_x`=-1850.318237, `position_y`=5487.258301, `position_z`=-12.427303, `orientation`=4.58 WHERE `guid`=96659 AND `id1`=20331;
52-
UPDATE `creature` SET `position_x`=-1839.435181, `position_y`=5484.992676, `position_z`=-12.427303, `orientation`=4.23 WHERE `guid`=96660 AND `id1`=20331;
53-
UPDATE `creature` SET `position_x`=-1832.658813, `position_y`=5497.825195, `position_z`=-12.427303, `orientation`=3.76 WHERE `guid`=96661 AND `id1`=20331;
54-
UPDATE `creature` SET `position_x`=-1847.195190, `position_y`=5502.587402, `position_z`=-12.427303, `orientation`=5 WHERE `guid`=96662 AND `id1`=20331;
51+
UPDATE `creature` SET `position_x`=-1850.318237, `position_y`=5487.258301, `position_z`=-12.427303, `orientation`=4.58 WHERE `guid`=96659 AND `id`=20331;
52+
UPDATE `creature` SET `position_x`=-1839.435181, `position_y`=5484.992676, `position_z`=-12.427303, `orientation`=4.23 WHERE `guid`=96660 AND `id`=20331;
53+
UPDATE `creature` SET `position_x`=-1832.658813, `position_y`=5497.825195, `position_z`=-12.427303, `orientation`=3.76 WHERE `guid`=96661 AND `id`=20331;
54+
UPDATE `creature` SET `position_x`=-1847.195190, `position_y`=5502.587402, `position_z`=-12.427303, `orientation`=5 WHERE `guid`=96662 AND `id`=20331;
5555

5656
-- Disable breadcrumb quests, SSO dailies and Magister's Terrace dailies
5757
DELETE FROM `disables` WHERE `sourceType`=1 AND `entry` IN (11481, 11482, 11550, 11513, 11514, 11515, 11516, 11875, 11877, 11880, 11499, 11500);

src/Bracket_61_64/sql/world/progression_61_64_creature_disable_token_vendor.sql

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
UPDATE `creature` SET `phasemask` = 16384 WHERE `id1` IN (
1+
UPDATE `creature` SET `phasemask` = 16384 WHERE `id` IN (
22
-- Tier 4
33
20616, -- Asuur (Aldor)
44
20613, -- Arodis Sunblade (Scryer)

0 commit comments

Comments
 (0)