mirror of
https://github.com/TrinityCore/TrinityCore.git
synced 2026-01-22 18:15:31 +01:00
*Change vehicle faction the same as the driver's when driver enters it.
*Fix 3593 sql. --HG-- branch : trunk
This commit is contained in:
8
sql/updates/3467_world_spellclick_(dk).sql
Normal file
8
sql/updates/3467_world_spellclick_(dk).sql
Normal file
@@ -0,0 +1,8 @@
|
||||
ALTER TABLE `npc_spellclick_spells`
|
||||
ADD COLUMN `quest_status` int(11) UNSIGNED NOT NULL DEFAULT 3 COMMENT 'Quest status: 3 incompleted, 1 completed/rewarded' AFTER `quest_id`;
|
||||
|
||||
DELETE FROM `npc_spellclick_spells` WHERE `npc_entry` IN ('29501', '29488');
|
||||
INSERT INTO `npc_spellclick_spells` (`npc_entry`, `spell_id`, `quest_id`, `quest_status`, `cast_flags`) VALUES
|
||||
('29488', '54568', '12670', '1', '3'),
|
||||
('29501', '54575', '12670', '1', '3');
|
||||
|
||||
@@ -1,6 +1,3 @@
|
||||
ALTER TABLE `npc_spellclick_spells`
|
||||
ADD COLUMN `quest_status` int(11) UNSIGNED NOT NULL DEFAULT 3 COMMENT 'Quest status: 3 incompleted, 1 completed/rewarded' AFTER `quest_id`;
|
||||
|
||||
DELETE FROM `npc_spellclick_spells` WHERE `npc_entry` IN ('29501', '29488');
|
||||
INSERT INTO `npc_spellclick_spells` (`npc_entry`, `spell_id`, `quest_id`, `quest_status`, `cast_flags`) VALUES
|
||||
('29488', '54568', '12670', '1', '3'),
|
||||
|
||||
Reference in New Issue
Block a user