aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKudlaty <none@none>2009-05-22 17:47:10 +0200
committerKudlaty <none@none>2009-05-22 17:47:10 +0200
commitbe6fad0de17fede0e3a0afcc864d7743de839a3e (patch)
tree8a2ad7eb6aaf4802fdfe702671b823cf62a8c6e7
parent3bd98584170536d16cc7e09ee5e8921b9a3de9fb (diff)
Correct typo in previous commit
--HG-- branch : trunk
-rw-r--r--sql/mangos.sql2
1 files changed, 1 insertions, 1 deletions
diff --git a/sql/mangos.sql b/sql/mangos.sql
index 1561438c0a3..56d987a2048 100644
--- a/sql/mangos.sql
+++ b/sql/mangos.sql
@@ -3168,7 +3168,7 @@ CREATE TABLE `npc_spellclick_spells` (
`npc_entry` INT UNSIGNED NOT NULL COMMENT 'reference to creature_template',
`spell_id` INT UNSIGNED NOT NULL COMMENT 'spell which should be casted ',
`quest_id` INT UNSIGNED NOT NULL COMMENT 'reference to quest_template',
- `quest_status` INT(11) UNSIGNED NOT NULL DEFAULT 0 COMMENT 'Quest status: 3 incompleted, 1 completed/rewarded',
+ `quest_status` INT(11) UNSIGNED NOT NULL DEFAULT 3 COMMENT 'Quest status: 3 incompleted, 1 completed/rewarded',
`cast_flags` TINYINT UNSIGNED NOT NULL COMMENT 'first bit defines caster: 1=player, 0=creature; second bit defines target, same mapping as caster bit'
) ENGINE = MYISAM DEFAULT CHARSET=utf8;