From 0ee6dd3f77cc42f9722f5c7422c0daf32a01e405 Mon Sep 17 00:00:00 2001 From: N00byKing Date: Sun, 23 Jan 2022 13:39:21 +0100 Subject: [PATCH] V6: Raise DoorCost Max to 5 --- worlds/v6/Options.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/worlds/v6/Options.py b/worlds/v6/Options.py index fac891ba..5e4090b5 100644 --- a/worlds/v6/Options.py +++ b/worlds/v6/Options.py @@ -4,7 +4,7 @@ from Options import Option, DeathLink, Range class DoorCost(Range): """Amount of Trinkets required to enter Areas. Set to 0 to disable artificial locks.""" range_start = 0 - range_end = 3 + range_end = 5 default = 3 class DeathLinkAmnesty(Range):