diff --git a/cromulant/ants.py b/cromulant/ants.py index bca5a20..f24bfce 100644 --- a/cromulant/ants.py +++ b/cromulant/ants.py @@ -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)))