Improved support for enchantgrade (#5975)

Added further support for enchantgrade so that the enchantgrade is not lost during certain processes and can be accessed via script commands.
Also added missing logging support for it.
This commit is contained in:
Lemongrass3110
2021-05-30 00:44:50 +02:00
committed by GitHub
parent 5d92d1a000
commit 3a8e4ffbc7
8 changed files with 51 additions and 11 deletions

View File

@@ -197,6 +197,7 @@ CREATE TABLE IF NOT EXISTS `picklog` (
`unique_id` bigint(20) unsigned NOT NULL default '0',
`map` varchar(11) NOT NULL default '',
`bound` tinyint(1) unsigned NOT NULL default '0',
`enchantgrade` tinyint unsigned NOT NULL default '0',
PRIMARY KEY (`id`),
INDEX (`type`)
) ENGINE=MyISAM AUTO_INCREMENT=1;