From 2d3faea713ca32f6c739f047c0a13505f9cd1d2f Mon Sep 17 00:00:00 2001 From: Scipio Wright Date: Mon, 6 Jan 2025 09:52:33 -0500 Subject: [PATCH] Core: Include unfilled locations in error when there are not enough locations for progression items (#4285) Co-authored-by: Exempt-Medic <60412657+Exempt-Medic@users.noreply.github.com> --- Fill.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Fill.py b/Fill.py index 5bbbfa79..a040794f 100644 --- a/Fill.py +++ b/Fill.py @@ -531,7 +531,8 @@ def distribute_items_restrictive(multiworld: MultiWorld, if progitempool: raise FillError( f"Not enough locations for progression items. " - f"There are {len(progitempool)} more progression items than there are available locations.", + f"There are {len(progitempool)} more progression items than there are available locations.\n" + f"Unfilled locations:\n{multiworld.get_unfilled_locations()}.", multiworld=multiworld, ) accessibility_corrections(multiworld, multiworld.state, defaultlocations)