fix(Core/Cooldown): Implement spell cooldown overrides to address cha… (#15143)

This commit is contained in:
Skjalf
2023-02-22 23:00:18 -03:00
committed by GitHub
parent 9b858e4653
commit fff0e17133
6 changed files with 126 additions and 2 deletions

View File

@@ -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`)
);