mirror of
https://github.com/ZhengPeiRu21/mod-individual-progression
synced 2025-11-29 23:44:51 +08:00
Restore Potion Cooldown Time
This restores potion cooldown time to 2 minutes like it was during vanilla and TBC.
This commit is contained in:
14
sql/world/base/optional_potion_cooldown.sql
Normal file
14
sql/world/base/optional_potion_cooldown.sql
Normal file
@@ -0,0 +1,14 @@
|
||||
/* This will restore potion cooldown time to 2 minutes like it was during vanilla and TBC */
|
||||
|
||||
/* classic potions */
|
||||
UPDATE `item_template` SET `spellcategorycooldown_1` = 120000 WHERE `entry` IN
|
||||
(118, 858, 929, 1450, 1710, 2455, 2456, 2459, 2633, 3087, 3384, 3385, 3386, 3387, 3827, 3928, 4596, 4623,
|
||||
5631, 5633, 5634, 5816, 6048, 6049, 6050, 6051, 6052, 6149, 6372, 9030, 9036, 9144,
|
||||
12190, 13442, 13443, 13444, 13446, 13455, 13456, 13457, 13458, 13459, 13460, 13461, 13462, 13506,
|
||||
17348, 17349, 17351, 17352, 18253, 18839, 18841, 20002, 20008);
|
||||
|
||||
/* TBC potions */
|
||||
UPDATE `item_template` SET `spellcategorycooldown_1` = 120000 WHERE `entry` IN
|
||||
(22826, 22828, 22829, 22832, 22836, 22837, 22838, 22839, 22841, 22842, 22844, 22845, 22846, 22847, 22849, 22850, 22871,
|
||||
23822, 23823, 28100, 28101, 31676, 31677, 31838, 31839, 31840, 31841, 31852, 31853, 31854, 31855,
|
||||
32783, 32784, 32840, 32844, 32845, 32846, 32847, 32902, 32903, 32904, 32905, 32909, 32910, 32947, 32948);
|
||||
Reference in New Issue
Block a user