mirror of
https://github.com/mod-playerbots/azerothcore-wotlk.git
synced 2026-01-13 17:19:07 +00:00
fix(Core/Cooldown): Implement spell cooldown overrides to address cha… (#15143)
This commit is contained in:
@@ -0,0 +1,10 @@
|
||||
--
|
||||
DROP TABLE IF EXISTS `spell_cooldown_overrides`;
|
||||
CREATE TABLE `spell_cooldown_overrides` (
|
||||
`Id` INT UNSIGNED NOT NULL,
|
||||
`RecoveryTime` INT UNSIGNED NOT NULL DEFAULT '0',
|
||||
`CategoryRecoveryTime` INT UNSIGNED NOT NULL DEFAULT '0',
|
||||
`StartRecoveryTime` INT UNSIGNED NOT NULL DEFAULT '0',
|
||||
`StartRecoveryCategory` INT UNSIGNED NOT NULL DEFAULT '0',
|
||||
PRIMARY KEY (`Id`)
|
||||
);
|
||||
Reference in New Issue
Block a user