diff options
author | megamage <none@none> | 2008-11-04 09:23:06 -0600 |
---|---|---|
committer | megamage <none@none> | 2008-11-04 09:23:06 -0600 |
commit | fc9a14a6cf5cff4bf4ba3124e646e09b940729eb (patch) | |
tree | 9605e808e74532072845b7e75510d0f3dbf6e5ee /sql | |
parent | a5045b76849f095929358248d8b51ed8a4fb89bc (diff) |
[svn] Fix 146_world.sql. Do not use default for text. (Ignore this if you have successfully applied 146_world.sql)
Fix HandleAuraModIncreaseHealth, also increase current health.
Merge from Mangos:
2008-11-02 10:53:27 854e0d64e3410b2a1eff6d56705f8e42b4291534 Do not split self caused damage.
(PART) 2008-10-31 12:45:22 e56b671979623570acd358a9b99aa169be22ffba Move tamed pet creating code to new function.
--HG--
branch : trunk
Diffstat (limited to 'sql')
-rw-r--r-- | sql/updates/146_world.sql | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sql/updates/146_world.sql b/sql/updates/146_world.sql index 67de357f841..9bfdb2f9be3 100644 --- a/sql/updates/146_world.sql +++ b/sql/updates/146_world.sql @@ -5,7 +5,7 @@ CREATE TABLE `spell_linked_spell` ( `spell_trigger` int(10) NOT NULL,
`spell_effect` int(10) NOT NULL default '0',
`type` smallint(3) unsigned NOT NULL default '0',
- `comment` text NOT NULL default '',
+ `comment` text NOT NULL,
PRIMARY KEY (`spell_trigger`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
|