From 394b63180f5f717d941c76fa81f1f4424ed581cf Mon Sep 17 00:00:00 2001 From: Auric Vente Date: Tue, 23 Jul 2024 02:45:58 -0600 Subject: [PATCH] Mods --- cromulant/game.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/cromulant/game.py b/cromulant/game.py index 2351505..d926d19 100644 --- a/cromulant/game.py +++ b/cromulant/game.py @@ -50,7 +50,7 @@ class Method: return [Method.travel] @staticmethod - def opts_thought() -> list[Opt]: + def opts_think() -> list[Opt]: return [Method.thinking_1, Method.thinking_2] @staticmethod @@ -236,7 +236,7 @@ class Game: opts.extend(Method.opts_travel()) if Settings.think_enabled: - opts.extend(Method.opts_thought()) + opts.extend(Method.opts_think()) if Settings.words_enabled: opts.extend(Method.opts_words())