🗃️ UserID's instead of display names
This commit is contained in:
@ -1,7 +1,7 @@
|
||||
import json
|
||||
|
||||
from PIL import Image, ImageDraw, ImageFont
|
||||
from funcs import logThis
|
||||
from funcs import logThis, getName
|
||||
|
||||
border = 100
|
||||
placement = [0,0]
|
||||
@ -35,6 +35,7 @@ def drawImage(channel):
|
||||
|
||||
for x in range(len(hands)):
|
||||
key, value = list(hands.items())[x]
|
||||
key = getName(key)
|
||||
logThis("drawing "+key+"'s hand")
|
||||
userHand = drawHand(value["hand"],False,value["busted"],value["blackjack"])
|
||||
try:
|
||||
|
Reference in New Issue
Block a user