Stärkerer Zufall bei Farbauswahl des Computers, wenn weniger Karten auf

dessen Hand sind
This commit is contained in:
mokoe
2021-01-08 12:51:29 +01:00
parent da2663e906
commit 89c4a837b4

View File

@@ -190,6 +190,11 @@ public class Computer_gegner {
wahl = farben[zufall(4)]; wahl = farben[zufall(4)];
} }
} }
if (hand.size() < 3) {
if(zufall(10) > 5) {
wahl = farben[zufall(4)];
}
}
} }
return wahl; return wahl;