This commit is contained in:
NikolajDanger
2020-08-07 18:01:47 +02:00
parent 5839cd5a8f
commit 5a4eebdd7b
6 changed files with 14 additions and 14 deletions

View File

@ -56,7 +56,7 @@ def badCircle():
x = middle + (math.cos(math.radians(degree+start)) * (circleSize/2)) - (lineWidth/2) + devx
y = middle + (math.sin(math.radians(degree+start)) * (circleSize/2)) - (lineWidth/2) + devy
d.ellipse([(x,y),(x+lineWidth,y+lineWidth)],fill=(0,0,0,255))
return background
@ -176,7 +176,7 @@ def drawImage(channel):
man = drawMan(6)
except:
logThis("Error drawing stick figure (error code 1712)")
try:
man = man.resize((smolManx,smolMany))
except:
@ -184,5 +184,5 @@ def drawImage(channel):
background.paste(gallow,(100,100),gallow)
background.paste(man,(280,210),man)
background.save("resources/games/hangmanBoards/hangmanBoard"+channel+".png")