fourth commit
This commit is contained in:
parent
1c10db7078
commit
966ce1eae4
1 changed files with 3 additions and 5 deletions
|
@ -51,7 +51,7 @@
|
|||
:disabled="!wer_ist_dran_mensch"
|
||||
v-show="index <= this.aktueller_muenzen_stand"
|
||||
>
|
||||
nimm {{ this.gib_muenztext(index) }}
|
||||
nimm {{ index }}
|
||||
</button>
|
||||
<br />
|
||||
</template>
|
||||
|
@ -338,7 +338,7 @@ export default {
|
|||
this.merke_zug(alter_muenzen_stand, anzahl);
|
||||
wer = "Die KI";
|
||||
}
|
||||
this.ausgabe = wer + " hat im letzten Zug " + this.gib_muenztext(anzahl) + "genommen.";
|
||||
this.ausgabe = wer + " hat im letzten Zug " + this.gib_muenztext(anzahl) + " genommen. ";
|
||||
|
||||
if (
|
||||
this.aktueller_muenzen_stand <= 0 ||
|
||||
|
@ -403,13 +403,11 @@ export default {
|
|||
},
|
||||
|
||||
gib_muenztext(anzahl) {
|
||||
let rueckgabe = anzahl;
|
||||
/*
|
||||
let rueckgabe = anzahl + " Münzen";
|
||||
if (anzahl == 1) {
|
||||
rueckgabe = "1 Münze";
|
||||
}
|
||||
*/
|
||||
|
||||
return rueckgabe;
|
||||
},
|
||||
gib_gemerkter_zug_ausgabe(anzahl) {
|
||||
|
|
Loading…
Reference in a new issue