From 2156a04bfa0d3b63479c34287234cc16ab7abd4e Mon Sep 17 00:00:00 2001 From: Auric Vente Date: Mon, 22 Jul 2024 21:49:47 -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 7059b6e..bca5a20 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"]) + words = remove(words, ["of", "de", "da"]) if len(words) < 2: words.extend(Utils.random_word(2 - len(words)))