Skip to content

Commit

Permalink
[1469] Fixed errors from previous commit
Browse files Browse the repository at this point in the history
Thanks @NeatElves and @dagochen for pointing.
  • Loading branch information
cala committed Oct 1, 2016
1 parent c0eae82 commit ac5e305
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions updates/1469_errors_fixes.sql
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
-- Fixed errors from previous commit

-- ReqCreatureOrGOId1 were set to 0, so do ReqCreatureOrGOCount1
UPDATE quest_template SET ReqCreatureOrGOCount1=0 WHERE entry IN (8356, 8360, 8359, 8358, 8355, 8354, 8353);

-- Reinserted conditions after deleting wrong one
DELETE FROM conditions WHERE condition_entry=1372;
INSERT INTO `conditions` (`condition_entry`, `type`, `value1`, `value2`) VALUES (1372, 8, 1657, 0);

-- Fixed quest 1657
UPDATE quest_template SET QuestFlags= 0, SpecialFlags= 0 WHERE entry= 1657;

0 comments on commit ac5e305

Please sign in to comment.