Set some stuff up for werewolf 🐺

This commit is contained in:
NikolajDanger
2020-12-03 15:48:02 +01:00
parent 01553d5ffc
commit d03ae74937
5 changed files with 160 additions and 22 deletions

View File

@ -50,7 +50,6 @@ class Blackjack():
else:
for x in range(len(values)):
values[x] += int(cardValue)
print(values[x])
values.sort()
@ -91,9 +90,7 @@ class Blackjack():
else:
done = True
print(dealerHand)
if self.calcHandValue(dealerHand) > 21:
print("yeet")
self.bot.database["blackjack games"].update_one({"_id":channel},{"$set":{"dealer busted":True}})
return done