diff options
| author | Shauren <none@none> | 2010-06-14 21:03:05 +0200 |
|---|---|---|
| committer | Shauren <none@none> | 2010-06-14 21:03:05 +0200 |
| commit | b3f1bc11d9a38dd87957c33e8b7e32319fb7ef8f (patch) | |
| tree | 56c33526d85f96d0c53e594f7dd58696aae7463c /sql/base | |
| parent | d095e315a0457e49b9d8d8ab2c4fe4f0169c7a5a (diff) | |
Added support for removing blizz items from character creation info by adding entry to playercreateinfo_item with count -1
Added support for all class/all race in playercreateinfo_item by setting class/race to 0 (like currently playercreateinfo_spell)
--HG--
branch : trunk
Diffstat (limited to 'sql/base')
| -rw-r--r-- | sql/base/world_database.sql | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sql/base/world_database.sql b/sql/base/world_database.sql index 5cf85d68cab..4ef57d79fdd 100644 --- a/sql/base/world_database.sql +++ b/sql/base/world_database.sql @@ -4105,7 +4105,7 @@ CREATE TABLE `playercreateinfo_item` ( `race` tinyint(3) unsigned NOT NULL DEFAULT '0', `class` tinyint(3) unsigned NOT NULL DEFAULT '0', `itemid` mediumint(8) unsigned NOT NULL DEFAULT '0', - `amount` tinyint(3) unsigned NOT NULL DEFAULT '1', + `amount` tinyint(3) NOT NULL DEFAULT '1', KEY `playercreateinfo_race_class_index` (`race`,`class`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; |
