mirror of
https://github.com/TrinityCore/TrinityCore.git
synced 2026-01-16 07:30:42 +01:00
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:
@@ -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 */;
|
||||
|
||||
Reference in New Issue
Block a user