Skip to content

Commit

Permalink
fix(workers): workers should show the correct refining tradeskill
Browse files Browse the repository at this point in the history
  • Loading branch information
seiyria committed Mar 27, 2023
1 parent 6b914e2 commit 89c043a
Show file tree
Hide file tree
Showing 5 changed files with 4 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -295,7 +295,6 @@ export class RefiningPageDisplayComponent implements OnInit, OnChanges, OnDestro
}

assignWorker(recipe: IGameRecipe) {
console.log(this.tradeskill);
this.store.dispatch(new AssignRefiningWorker(this.tradeskill, recipe));
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
} as pageData">

<app-refining-page-display
[tradeskill]="'alchemy'"
[tradeskill]="'blacksmithing'"
[level]="pageData.level || 0"
[items]="pageData.items || []"
[currentQueue]="pageData.currentQueue || { queue: [], size: 1 }"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
} as pageData">

<app-refining-page-display
[tradeskill]="'alchemy'"
[tradeskill]="'cooking'"
[level]="pageData.level || 0"
[items]="pageData.items || []"
[currentQueue]="pageData.currentQueue || { queue: [], size: 1 }"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
} as pageData">

<app-refining-page-display
[tradeskill]="'alchemy'"
[tradeskill]="'jewelcrafting'"
[level]="pageData.level || 0"
[items]="pageData.items || []"
[currentQueue]="pageData.currentQueue || { queue: [], size: 1 }"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
} as pageData">

<app-refining-page-display
[tradeskill]="'alchemy'"
[tradeskill]="'weaving'"
[level]="pageData.level || 0"
[items]="pageData.items || []"
[currentQueue]="pageData.currentQueue || { queue: [], size: 1 }"
Expand Down

0 comments on commit 89c043a

Please sign in to comment.