This commit is contained in:
Auric Vente 2024-07-27 23:03:02 -06:00
parent dfa16b52bd
commit 9307c992f5
1 changed files with 2 additions and 2 deletions

View File

@ -318,8 +318,8 @@ class Game:
method = Opts.travel.method method = Opts.travel.method
elif value == Opts.think.value: elif value == Opts.think.value:
n = random.randint(1, 3)
method = Opts.think.method method = Opts.think.method
n = random.choices([1, 2, 3], weights=[1, 2, 2])[0]
if n == 1: if n == 1:
status = Utils.random_name([], Ants.get_names()) status = Utils.random_name([], Ants.get_names())
@ -329,8 +329,8 @@ class Game:
status = Utils.random_word(noun=True, adj=False) status = Utils.random_word(noun=True, adj=False)
elif value == Opts.words.value: elif value == Opts.words.value:
n = random.randint(1, 4)
method = Opts.words.method method = Opts.words.method
n = random.randint(1, 4)
if n == 1: if n == 1:
status = Utils.words_1() status = Utils.words_1()