df
This commit is contained in:
parent
c98cc3a5fe
commit
28fbdf773d
3 changed files with 5 additions and 5 deletions
|
@ -1065,10 +1065,10 @@ def handle_wordle_action(cid, v):
|
|||
for i in guess:
|
||||
result += i.upper()
|
||||
if i == answer[pos]:
|
||||
result += "🟩/"
|
||||
result += "🟩 "
|
||||
not_finished[pos] = " "
|
||||
elif i in not_finished: result += "🟨/"
|
||||
else: result += "🟥/"
|
||||
elif i in not_finished: result += "🟨 "
|
||||
else: result += "🟥 "
|
||||
pos += 1
|
||||
|
||||
guesses += result[:-1]
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue