mirror of
https://github.com/EQEmu/Server.git
synced 2026-05-16 22:58:34 +00:00
[Shared Tasks] Implement task timer groups (#2340)
This adds task replay and request timer groups (an arbitrary id) which allows for different tasks to share lockouts
This commit is contained in:
@@ -0,0 +1,6 @@
|
||||
ALTER TABLE `tasks`
|
||||
ADD COLUMN `replay_timer_group` INT UNSIGNED NOT NULL DEFAULT '0' AFTER `completion_emote`,
|
||||
ADD COLUMN `request_timer_group` INT UNSIGNED NOT NULL DEFAULT '0' AFTER `replay_timer_seconds`;
|
||||
|
||||
ALTER TABLE `character_task_timers`
|
||||
ADD COLUMN `timer_group` INT NOT NULL DEFAULT '0' AFTER `timer_type`;
|
||||
Reference in New Issue
Block a user