This commit is contained in:
Auric Vente
2024-07-22 21:50:09 -06:00
parent 2156a04bfa
commit 85b6de1f7e

View File

@@ -227,7 +227,7 @@ class Ants:
return [word for word in words if word.lower() not in ignore]
def fill(words: list[str]) -> list[str]:
words = remove(words, ["of", "de", "da"])
words = remove(words, ["of", "de", "da", "the"])
if len(words) < 2:
words.extend(Utils.random_word(2 - len(words)))