mirror of https://github.com/bra1n/townsquare.git
Fixing bug stopping player with index 0 from being assigned an out of script traveller.
This commit is contained in:
parent
04993633fd
commit
59105beb78
|
@ -104,7 +104,7 @@ export default {
|
||||||
this.$store.commit("toggleModal", "role");
|
this.$store.commit("toggleModal", "role");
|
||||||
},
|
},
|
||||||
isBluffs() {
|
isBluffs() {
|
||||||
return this.playerIndex > 0;
|
return this.playerIndex >= 0;
|
||||||
},
|
},
|
||||||
close() {
|
close() {
|
||||||
this.tab = "editionRoles";
|
this.tab = "editionRoles";
|
||||||
|
|
Loading…
Reference in New Issue