Fixing bug stopping player with index 0 from being assigned an out of script traveller.

This commit is contained in:
Dave 2021-01-17 20:17:19 +00:00
parent 04993633fd
commit 59105beb78
1 changed files with 1 additions and 1 deletions

View File

@ -104,7 +104,7 @@ export default {
this.$store.commit("toggleModal", "role");
},
isBluffs() {
return this.playerIndex > 0;
return this.playerIndex >= 0;
},
close() {
this.tab = "editionRoles";