From 0aa2b31ca4216dd6d24d0da9ca1e4b8228d2f32c Mon Sep 17 00:00:00 2001 From: spinerak Date: Tue, 11 Jun 2024 19:11:17 +0200 Subject: [PATCH] Remove location "0", we don't use that one --- worlds/yachtdice/Locations.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/worlds/yachtdice/Locations.py b/worlds/yachtdice/Locations.py index d74cc95894..67994f01ac 100644 --- a/worlds/yachtdice/Locations.py +++ b/worlds/yachtdice/Locations.py @@ -26,7 +26,7 @@ def all_locations_fun(max_score): """ Function that is called when this file is loaded, which loads in ALL possible locations, score 1 to 1000 """ - return {f"{i} score": LocData(starting_index + i, "Board", i) for i in range(max_score + 1)} + return {f"{i} score": LocData(starting_index + i, "Board", i) for i in range(1, max_score + 1)}