Skip to content

Commit

Permalink
fix: bazaar shouldn't allow bid again for already auctioned tile
Browse files Browse the repository at this point in the history
  • Loading branch information
farin committed Nov 17, 2020
1 parent 082ba06 commit 6b5f39e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/renderer/components/game/actions/BazaarPhaseAction.vue
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,7 @@ export default {
isNil,
onTileClick (idx) {
if (this.local && this.actionItem.type === 'BazaarSelectTile') {
if (this.local && this.actionItem.type === 'BazaarSelectTile' && isNil(this.bazaar[idx].owner)) {
this.selected = idx
}
},
Expand Down

0 comments on commit 6b5f39e

Please sign in to comment.