This commit is contained in:
Aevann1 2022-02-14 22:34:23 +02:00
parent c98cc3a5fe
commit 28fbdf773d
3 changed files with 5 additions and 5 deletions

View file

@ -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]