mirror of
https://github.com/ZhengPeiRu21/mod-individual-progression
synced 2025-11-29 23:44:51 +08:00
Create optional_stackable_buff_scrolls.sql
Deleted the file because it's not working correctly yet. But it's optional, so the user can decide to use it or not.
This commit is contained in:
11
sql/world/base/optional_stackable_buff_scrolls.sql
Normal file
11
sql/world/base/optional_stackable_buff_scrolls.sql
Normal file
@@ -0,0 +1,11 @@
|
||||
/* These changes remove exclusivity from the buff scrolls, and make them stackable.
|
||||
This restores behavior to vanilla where players were able to buff themselves with multiple buff scrolls
|
||||
This should not be possible in TBC and WoTLK. No solution yet to have this work correctly all the time.
|
||||
*/
|
||||
-- Set first_spell_id as rank 2 to bypass core check for exclusivity
|
||||
UPDATE `spell_ranks` SET `first_spell_id`=8094 WHERE `first_spell_id`=8091;
|
||||
UPDATE `spell_ranks` SET `first_spell_id`=8097 WHERE `first_spell_id`=8096;
|
||||
UPDATE `spell_ranks` SET `first_spell_id`=8100 WHERE `first_spell_id`=8099;
|
||||
UPDATE `spell_ranks` SET `first_spell_id`=8113 WHERE `first_spell_id`=8112;
|
||||
UPDATE `spell_ranks` SET `first_spell_id`=8116 WHERE `first_spell_id`=8115;
|
||||
UPDATE `spell_ranks` SET `first_spell_id`=8119 WHERE `first_spell_id`=8118;
|
||||
Reference in New Issue
Block a user