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">
|
<a href="https://discord.gg/tkWDny6" target="_blank">
|
||||||
Join Discord
|
Join Discord
|
||||||
</a>
|
</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>
|
||||||
<li>
|
<li>
|
||||||
<a href="https://github.com/bra1n/townsquare" target="_blank">
|
<a href="https://github.com/bra1n/townsquare" target="_blank">
|
||||||
Source code
|
Source code
|
||||||
</a>
|
</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>
|
</li>
|
||||||
</template>
|
</template>
|
||||||
</ul>
|
</ul>
|
||||||
|
|
|
@ -19,7 +19,11 @@
|
||||||
<div class="night">
|
<div class="night">
|
||||||
<ul class="first">
|
<ul class="first">
|
||||||
<li class="headline">First Night</li>
|
<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">
|
<span class="name">
|
||||||
{{ role.name }}
|
{{ role.name }}
|
||||||
</span>
|
</span>
|
||||||
|
@ -35,7 +39,11 @@
|
||||||
</ul>
|
</ul>
|
||||||
<ul class="other">
|
<ul class="other">
|
||||||
<li class="headline">Other Nights</li>
|
<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
|
<span
|
||||||
class="icon"
|
class="icon"
|
||||||
v-if="role.id"
|
v-if="role.id"
|
||||||
|
|
|
@ -833,7 +833,7 @@
|
||||||
{
|
{
|
||||||
"id": "philosopher",
|
"id": "philosopher",
|
||||||
"edition": "snv",
|
"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 .",
|
"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,
|
"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 .",
|
"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