From aeead4f5b2abe5b3dd230a1b214b08474c298fa4 Mon Sep 17 00:00:00 2001 From: Dan Hess Date: Tue, 4 Aug 2020 14:23:38 -0500 Subject: [PATCH] Add more rules used to the help description --- cogs/games.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/cogs/games.py b/cogs/games.py index 950e10b..fce2c7d 100644 --- a/cogs/games.py +++ b/cogs/games.py @@ -15,6 +15,8 @@ class Games(commands.Cog): apple, then the next word can be elephant because apple ends in e and elephant begins in e The last player who entered a word cannot be the next person who enters a word + The kana ん cannot be used, as no word in Japanese starts with this + The word used cannot be a previously given word """ def grab_letter(word, last=True): iterator = reversed(word) if last else iter(word)