diff options
author | Dr-J <daniel.jarrott0@gmail.com> | 2015-02-21 23:46:34 +0000 |
---|---|---|
committer | Dr-J <daniel.jarrott0@gmail.com> | 2015-02-21 23:46:34 +0000 |
commit | 9c8e22eec59e12b1678cbf3d48ee60f486d8ba93 (patch) | |
tree | a09e74e6001eac577b0f06c506e01d7eb0765b0c | |
parent | abee9046a6d92e2f0ba9de9c97ce6304c2fcb883 (diff) |
DB/Achivement: Dinner Impossible
Thanks to @Joshiwald for fixing core to check db criteria for this achievement type to make this work properly, now achievement is only rewarded when a great feast has been laid in all 5 specified battlegrounds by player.
-rw-r--r-- | sql/updates/world/2015_02_21_00_world.sql | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/sql/updates/world/2015_02_21_00_world.sql b/sql/updates/world/2015_02_21_00_world.sql new file mode 100644 index 00000000000..7e71235703c --- /dev/null +++ b/sql/updates/world/2015_02_21_00_world.sql @@ -0,0 +1,9 @@ +DELETE FROM `achievement_criteria_data` WHERE `criteria_id` in(6626,6627,6628,6629,6630); + +INSERT INTO `achievement_criteria_data` (`criteria_id`, `type`, `value1`, `value2`, `ScriptName`) VALUES +(6626, 20, 30, 0, ''), -- Alterac Valley +(6627, 20, 529, 0, ''), -- Arathi Basin +(6628, 20, 489, 0, ''), -- Warsong Glutch +(6629, 20, 607, 0, ''), -- Strand of the Ancients +(6630, 20, 566, 0, ''); -- Eye of the Storm + |