diff options
author | ZxBiohazardZx <zxbiohazardzx@gmail.com> | 2013-01-04 20:26:37 +0100 |
---|---|---|
committer | ZxBiohazardZx <zxbiohazardzx@gmail.com> | 2013-01-04 20:27:05 +0100 |
commit | facea9f1587cd0056bdad446dce91c811ca9332e (patch) | |
tree | c74a20dd5c7cac2fa4d7513eaddef4d7295322a4 | |
parent | 9f32cd44e4a601f33a855ddea0a0cd13444cfb71 (diff) |
db/commit: fix sql error
-rw-r--r-- | sql/updates/world/2013_01_03_14_world_spell_area.sql | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sql/updates/world/2013_01_03_14_world_spell_area.sql b/sql/updates/world/2013_01_03_14_world_spell_area.sql index a670ed7c455..352fe0e9d85 100644 --- a/sql/updates/world/2013_01_03_14_world_spell_area.sql +++ b/sql/updates/world/2013_01_03_14_world_spell_area.sql @@ -1,4 +1,4 @@ -- add aura to be able to hand in quests DELETE FROM `spell_area` WHERE `spell`=52217; -INSERT INTO `spell_area` (`spell`,`area`,`quest_start`,`quest_start_active`,`quest_end`,`aura_spell`,`racemask`,`gender`,`autocast`) VALUES -(52217,4306,12574,1,0,0,0,2,1); +INSERT INTO `spell_area` (`spell`,`area`,`quest_start`,`quest_end`,`aura_spell`,`racemask`,`gender`,`autocast`,`quest_start_status`,`quest_end_status`) VALUES +(52217,4306,12574,0,0,0,2,1,1,64); |