mirror of
https://github.com/mangosfour/server.git
synced 2025-12-24 19:37:07 +00:00
* Not deleted normal item loot at first loot window close. * Save current item loot content to DB for later continue looting. * Cleanup spell effect SPELL_EFFECT_OPEN_LOCK check code * Cleanup Player::AutoStoreLoot calls
13 lines
658 B
SQL
13 lines
658 B
SQL
ALTER TABLE character_db_version CHANGE COLUMN required_10655_01_characters_character_queststatus_monthly required_10662_01_characters_item_loot bit;
|
|
|
|
DROP TABLE IF EXISTS `item_loot`;
|
|
CREATE TABLE `item_loot` (
|
|
`guid` int(11) unsigned NOT NULL default '0',
|
|
`owner_guid` int(11) unsigned NOT NULL default '0',
|
|
`itemid` int(11) unsigned NOT NULL default '0',
|
|
`amount` int(11) unsigned NOT NULL default '0',
|
|
`suffix` int(11) unsigned NOT NULL default '0',
|
|
`property` int(11) NOT NULL default '0',
|
|
PRIMARY KEY (`guid`,`itemid`),
|
|
KEY `idx_owner_guid` (`owner_guid`)
|
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8 ROW_FORMAT=DYNAMIC COMMENT='Item System';
|