mirror of
https://github.com/EQEmu/Server.git
synced 2026-05-16 22:58:34 +00:00
First step into implementing evolving items, added fields to database that were missing.
This commit is contained in:
@@ -0,0 +1,8 @@
|
||||
ALTER TABLE `items`
|
||||
ADD COLUMN `evoitem` INT(11) NOT NULL DEFAULT '0' AFTER `purity`,
|
||||
ADD COLUMN `evoid` INT(11) NOT NULL DEFAULT '0' AFTER `evoitem`,
|
||||
ADD COLUMN `evomax` INT(11) NOT NULL DEFAULT '0' AFTER `evolvinglevel`,
|
||||
CHANGE `UNK038` `skillmodmax` INT(11) NOT NULL DEFAULT '0',
|
||||
CHANGE `UNK222` `heirloom` INT(11) NOT NULL DEFAULT '0',
|
||||
CHANGE `UNK235` `placeable` INT(11) NOT NULL DEFAULT '0',
|
||||
CHANGE `UNK242` `epicitem` INT(11) NOT NULL DEFAULT '0';
|
||||
Reference in New Issue
Block a user