From 1603bab1dae0648547201c3e1ecb93e53257e618 Mon Sep 17 00:00:00 2001 From: black-sliver <59490463+black-sliver@users.noreply.github.com> Date: Sat, 18 Dec 2021 16:39:47 +0100 Subject: [PATCH] SoE: Rename difficulty 'Chaos' to 'Mystery' --- worlds/soe/Options.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/worlds/soe/Options.py b/worlds/soe/Options.py index 9eddd0e7..10406c01 100644 --- a/worlds/soe/Options.py +++ b/worlds/soe/Options.py @@ -30,7 +30,8 @@ class Difficulty(EvermizerFlags, Choice): option_easy = 0 option_normal = 1 option_hard = 2 - option_chaos = 3 # random is reserved pre 0.2 + option_mystery = 3 # 'random' is reserved + alias_chaos = 3 default = 1 flags = ['e', 'n', 'h', 'x']