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
This commit is contained in:
Shauren
2010-06-14 21:03:05 +02:00
parent d095e315a0
commit b3f1bc11d9
4 changed files with 57 additions and 5 deletions

View File

@@ -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 */;