diff --git a/funcs/games/blackjackDraw.py b/funcs/games/blackjackDraw.py index 287a110..b7ba6af 100644 --- a/funcs/games/blackjackDraw.py +++ b/funcs/games/blackjackDraw.py @@ -49,10 +49,10 @@ def drawImage(channel): textImage.text((32+(384*placement[x])+117-int(textWidth/2),1005),key,fill=(255,255,255), font=fnt) else: textWidth = fntSmol.getsize(key)[0] - textImage.text((32+(384*placement[x])+117-int(textWidth/2)-3,1020-3),key,fill=(0,0,0), font=fntSmol) - textImage.text((32+(384*placement[x])+117-int(textWidth/2)+3,1020-3),key,fill=(0,0,0), font=fntSmol) - textImage.text((32+(384*placement[x])+117-int(textWidth/2)-3,1020+3),key,fill=(0,0,0), font=fntSmol) - textImage.text((32+(384*placement[x])+117-int(textWidth/2)+3,1020+3),key,fill=(0,0,0), font=fntSmol) + textImage.text((32+(384*placement[x])+117-int(textWidth/2)-2,1020-2),key,fill=(0,0,0), font=fntSmol) + textImage.text((32+(384*placement[x])+117-int(textWidth/2)+2,1020-2),key,fill=(0,0,0), font=fntSmol) + textImage.text((32+(384*placement[x])+117-int(textWidth/2)-2,1020+2),key,fill=(0,0,0), font=fntSmol) + textImage.text((32+(384*placement[x])+117-int(textWidth/2)+2,1020+2),key,fill=(0,0,0), font=fntSmol) textImage.text((32+(384*placement[x])+117-int(textWidth/2),1015),key,fill=(255,255,255), font=fntSmol) table.save("resources/games/blackjackTables/blackjackTable"+channel+".png")