From e681cb4ed59e7518a58bed4e2cfb92092931fdfc Mon Sep 17 00:00:00 2001 From: NikolajDanger Date: Tue, 28 Jul 2020 11:29:58 +0200 Subject: [PATCH] :bug: --- funcs/games/blackjackDraw.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/funcs/games/blackjackDraw.py b/funcs/games/blackjackDraw.py index f871cd0..1deaffc 100644 --- a/funcs/games/blackjackDraw.py +++ b/funcs/games/blackjackDraw.py @@ -36,7 +36,7 @@ def drawImage(channel): def drawHand(hand, dealer, busted, blackjack): fnt = ImageFont.truetype('resources/futura-bold.ttf', 200) - fnt2 = ImageFont.truetype('resources/futura-bold.ttf', 140) + fnt2 = ImageFont.truetype('resources/futura-bold.ttf', 120) length = len(hand) background = Image.new("RGBA", (691+(125*(length-1)),1065),(0,0,0,0)) textImage = ImageDraw.Draw(background)