mirror of
https://github.com/mangosfour/server.git
synced 2025-12-24 01:37:02 +00:00
* Replace reqClass by reqSkillVlaue field in `skill_discovery_template` and check expected skill points amount for specific reipe discovery. * Add new `spell_loot_template` loot table for store item selection data for spells. At this moment for expclicit recipes discovery spells. * Code cleanups.
5 lines
321 B
SQL
5 lines
321 B
SQL
ALTER TABLE db_version CHANGE COLUMN required_7118_01_mangos_skill_discovery_template required_7133_01_mangos_skill_discovery_template bit;
|
|
|
|
ALTER TABLE skill_discovery_template
|
|
DROP `reqClass`,
|
|
ADD COLUMN `reqSkillValue` smallint(5) unsigned NOT NULL default '0' COMMENT 'skill points requirement' AFTER reqSpell;
|