hadean-old/content/core/actions/FetchSticksAction.ts

9 lines
204 B
TypeScript
Raw Normal View History

2021-06-22 19:25:41 -04:00
import { registerAction } from '@actions';
import { Game } from '@game';
registerAction('Fetch Sticks', (qty) => {
Game.current.board.addTask({
taskId: "core:fetch-sticks",
options: {}
})
});