mirror of
https://github.com/mangosfour/server.git
synced 2025-12-24 10:37:02 +00:00
* Drop some food action buttons * Drop attack spells for caster classes * Use expected simlifed spell version 20154 (it replaced by full version at learn spell 53408 and similar) In code used helper code for support 2 versions as fake non-stacking ranks. * Some other old "max ranks" of talents and spells now are permanent bonuses known from start (only "max rank" for spell exist) Signed-off-by: VladimirMangos <vladimir@getmangos.com>
7 lines
297 B
SQL
7 lines
297 B
SQL
ALTER TABLE db_version CHANGE COLUMN required_10217_03_mangos_spell_learn_spell required_10217_04_mangos_spell_chain bit;
|
|
|
|
-- 21084 replace of 20154 at learn judgements
|
|
DELETE FROM spell_chain WHERE first_spell = 20154;
|
|
INSERT INTO spell_chain VALUES
|
|
(20154,0,20154,1,0),
|
|
(21084,20154,20154,2,0);
|