mirror of
https://github.com/bra1n/townsquare.git
synced 2025-04-04 14:14:38 +00:00
Printing the number of alive no-Travellers (#90)
This commit is contained in:
parent
acab4147e4
commit
092d77386c
3 changed files with 10 additions and 9 deletions
10
CHANGELOG.md
10
CHANGELOG.md
|
@ -2,17 +2,9 @@
|
|||
|
||||
======
|
||||
|
||||
### Version 3.11.7
|
||||
Printing the number of alive non-Travellers
|
||||
Adding the picture leaf-top6.png
|
||||
|
||||
---
|
||||
|
||||
### Version 3.11.6
|
||||
Some corrections in the jinxes (in French)
|
||||
|
||||
---
|
||||
|
||||
### Version 3.11.5
|
||||
Correcting Atheist's french description
|
||||
|
||||
---
|
||||
|
|
|
@ -26,6 +26,10 @@
|
|||
{{ teams.alive }}
|
||||
<font-awesome-icon class="alive" icon="heartbeat" />
|
||||
</span>
|
||||
<span v-if="teams.traveler > 0">
|
||||
{{ teams.aliveNT }}
|
||||
<font-awesome-icon class="alive" icon="house-user" />
|
||||
</span>
|
||||
<span>
|
||||
{{ teams.votes }} <font-awesome-icon class="votes" icon="vote-yea" />
|
||||
</span>
|
||||
|
@ -102,10 +106,14 @@ export default {
|
|||
const { players } = this.$store.state.players;
|
||||
const nonTravelers = this.$store.getters["players/nonTravelers"];
|
||||
const alive = players.filter(player => player.isDead !== true).length;
|
||||
const aliveNT = players.filter(
|
||||
player => player.isDead !== true && player.role.team !== "traveler"
|
||||
).length;
|
||||
return {
|
||||
...gameJSON[nonTravelers - 5],
|
||||
traveler: players.length - nonTravelers,
|
||||
alive,
|
||||
aliveNT,
|
||||
votes:
|
||||
alive +
|
||||
players.filter(
|
||||
|
|
|
@ -27,6 +27,7 @@ const faIcons = [
|
|||
"HandPaper",
|
||||
"HandPointRight",
|
||||
"Heartbeat",
|
||||
"HouseUser",
|
||||
"Image",
|
||||
"Link",
|
||||
"MinusCircle",
|
||||
|
|
Loading…
Add table
Reference in a new issue