From 9307c992f5fd419cf1780ea252264f9772a27eb8 Mon Sep 17 00:00:00 2001 From: Auric Vente Date: Sat, 27 Jul 2024 23:03:02 -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 f4a9f59..56863e4 100644 --- a/cromulant/game.py +++ b/cromulant/game.py @@ -318,8 +318,8 @@ class Game: method = Opts.travel.method elif value == Opts.think.value: - n = random.randint(1, 3) method = Opts.think.method + n = random.choices([1, 2, 3], weights=[1, 2, 2])[0] if n == 1: status = Utils.random_name([], Ants.get_names()) @@ -329,8 +329,8 @@ class Game: status = Utils.random_word(noun=True, adj=False) elif value == Opts.words.value: - n = random.randint(1, 4) method = Opts.words.method + n = random.randint(1, 4) if n == 1: status = Utils.words_1()