aboutsummaryrefslogtreecommitdiff
path: root/sql
diff options
context:
space:
mode:
authorBlaymoira <none@none>2009-01-11 16:47:44 +0100
committerBlaymoira <none@none>2009-01-11 16:47:44 +0100
commitca342a8815f3c99119de6723c3f775baac6849c8 (patch)
tree1b94f263a8f96ca6c38806ba6d8eeb654a2c4145 /sql
parentd719fb27072e8dafb8b650c150cb8660e065388b (diff)
*Implemented requires_heroic_quest_done in areatrigger_teleport - by Anubisss
--HG-- branch : trunk
Diffstat (limited to 'sql')
-rw-r--r--sql/updates/842_world.sql5
1 files changed, 5 insertions, 0 deletions
diff --git a/sql/updates/842_world.sql b/sql/updates/842_world.sql
new file mode 100644
index 00000000000..953dff584a0
--- /dev/null
+++ b/sql/updates/842_world.sql
@@ -0,0 +1,5 @@
+ALTER TABLE `areatrigger_teleport`
+ADD `heroic_required_quest_done` MEDIUMINT(8) UNSIGNED NOT NULL DEFAULT 0 AFTER `heroic_key2`,
+ADD `heroic_required_failed_quest_text` TEXT NULL DEFAULT NULL AFTER `heroic_required_quest_done`;
+
+UPDATE `areatrigger_teleport` SET `heroic_required_quest_done` = 11492, `heroic_required_failed_quest_text` = 'Heroic Difficulty requires completion of the "Hard to Kill" quest.' WHERE `id` = 4887; \ No newline at end of file