Fix task id generation

This commit is contained in:
2020-04-19 21:21:16 +03:00
parent 61c41e6b03
commit 17de7e52dc
3 changed files with 1 additions and 23 deletions

View File

@ -2,7 +2,6 @@ import { Args, Command } from '../Command';
import { Task } from '../Queue/TaskQueue';
import { TaskController, registerTask } from './TaskController';
import { GoToPageAction } from '../Action/GoToPageAction';
import { GrabHeroAttributesAction } from '../Action/GrabHeroAttributesAction';
import { CompleteTaskAction } from '../Action/CompleteTaskAction';
import { SendOnAdventureAction } from '../Action/SendOnAdventureAction';
import { ClickButtonAction } from '../Action/ClickButtonAction';
@ -17,7 +16,6 @@ export class SendOnAdventureTask extends TaskController {
...args,
path: path('/hero.php'),
}),
new Command(GrabHeroAttributesAction.name, args),
new Command(GoToPageAction.name, {
...args,
path: path('/hero.php', { t: 3 }),