Basic draft library #19

Merged
hamcha merged 13 commits from feature/draft-lib into master 2019-09-16 13:53:07 +00:00
Showing only changes of commit dddeca9867 - Show all commits

View file

@ -5,6 +5,7 @@ export class DraftBot {
assign(player: SessionPlayer) { assign(player: SessionPlayer) {
player.on("available-picks", cards => { player.on("available-picks", cards => {
const pick = this.pick(cards); const pick = this.pick(cards);
// setTimeout hack to avoid handlers being called before the rest of the code
setTimeout(() => player.pick(pick.ID), 0); setTimeout(() => player.pick(pick.ID), 0);
}); });
} }