From 694df957e2eb7e9af9b568ed423872936bac2056 Mon Sep 17 00:00:00 2001 From: Scipio Wright Date: Wed, 10 Jul 2024 11:11:23 -0400 Subject: [PATCH] Temporarily default combat logic to on --- worlds/tunic/options.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/worlds/tunic/options.py b/worlds/tunic/options.py index 34cf814060..4eb24e5ef2 100644 --- a/worlds/tunic/options.py +++ b/worlds/tunic/options.py @@ -178,7 +178,8 @@ class CombatLogic(Choice): option_off = 0 option_bosses_only = 1 option_on = 2 - default = 0 + # todo: default 0 + default = 2 class TempCombatOption(Choice):