From 85b6de1f7ea27d03f725289132387812babf2e6b Mon Sep 17 00:00:00 2001 From: Auric Vente Date: Mon, 22 Jul 2024 21:50:09 -0600 Subject: [PATCH] Mods --- cromulant/ants.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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)))