fix(Core/Cooldown): Implement spell cooldown overrides to address cha… (#15143)
This commit is contained in:
parent
9b858e4653
commit
fff0e17133
6 changed files with 126 additions and 2 deletions
|
|
@ -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`)
|
||||
);
|
||||
Loading…
Add table
Add a link
Reference in a new issue