mirror of https://github.com/bra1n/townsquare.git
bugfixes
This commit is contained in:
parent
081ead0fd5
commit
eab7c659e3
|
@ -156,13 +156,21 @@
|
|||
<a href="https://discord.gg/tkWDny6" target="_blank">
|
||||
Join Discord
|
||||
</a>
|
||||
<em><font-awesome-icon :icon="['fab', 'discord']"/></em>
|
||||
<em>
|
||||
<a href="https://discord.gg/tkWDny6" target="_blank">
|
||||
<font-awesome-icon :icon="['fab', 'discord']" />
|
||||
</a>
|
||||
</em>
|
||||
</li>
|
||||
<li>
|
||||
<a href="https://github.com/bra1n/townsquare" target="_blank">
|
||||
Source code
|
||||
</a>
|
||||
<em><font-awesome-icon :icon="['fab', 'github']"/></em>
|
||||
<em>
|
||||
<a href="https://github.com/bra1n/townsquare" target="_blank">
|
||||
<font-awesome-icon :icon="['fab', 'github']" />
|
||||
</a>
|
||||
</em>
|
||||
</li>
|
||||
</template>
|
||||
</ul>
|
||||
|
|
|
@ -19,7 +19,11 @@
|
|||
<div class="night">
|
||||
<ul class="first">
|
||||
<li class="headline">First Night</li>
|
||||
<li v-for="role in rolesFirstNight" :key="role.name" :class="[role.team]">
|
||||
<li
|
||||
v-for="role in rolesFirstNight"
|
||||
:key="role.name"
|
||||
:class="[role.team]"
|
||||
>
|
||||
<span class="name">
|
||||
{{ role.name }}
|
||||
</span>
|
||||
|
@ -35,7 +39,11 @@
|
|||
</ul>
|
||||
<ul class="other">
|
||||
<li class="headline">Other Nights</li>
|
||||
<li v-for="role in rolesOtherNight" :key="role.name" :class="[role.team]">
|
||||
<li
|
||||
v-for="role in rolesOtherNight"
|
||||
:key="role.name"
|
||||
:class="[role.team]"
|
||||
>
|
||||
<span
|
||||
class="icon"
|
||||
v-if="role.id"
|
||||
|
|
|
@ -833,7 +833,7 @@
|
|||
{
|
||||
"id": "philosopher",
|
||||
"edition": "snv",
|
||||
"firstNight": 0,
|
||||
"firstNight": 1,
|
||||
"firstNightReminder": "The Philosopher either shows a “no” head signal, or points to a good character on their sheet. If they chose a character: Swap the out-of-play character token with the Philosopher token. Or, if the character is in play, that player is drunk and the Philosopher is now that character .",
|
||||
"otherNight": 1,
|
||||
"otherNightReminder": "If the Philosopher has not yet used their ability: • The Philosopher either shows a “no” head signal, or points to a good character on their sheet. • If they chose a character: Swap the out-of-play character token with the Philosopher token. Or, if the character is in play, that player is drunk and the Philosopher is now that character .",
|
||||
|
|
Loading…
Reference in New Issue