Improve village scan

This commit is contained in:
2020-04-20 09:42:45 +03:00
parent bcfb52cb98
commit 28566c4941
4 changed files with 3 additions and 16 deletions

View File

@ -1,12 +0,0 @@
import { ActionController, registerAction } from './ActionController';
import { Args } from '../Command';
import { Task } from '../Queue/TaskQueue';
import { StateGrabberManager } from '../Grabber/StateGrabberManager';
@registerAction
export class StoreVillageState extends ActionController {
async run(args: Args, task: Task): Promise<any> {
const manager = new StateGrabberManager();
manager.grab();
}
}