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)}