From 4d5fc1857c62b2245f691b2529f948cb534d35c4 Mon Sep 17 00:00:00 2001 From: gaithern <36639398+gaithern@users.noreply.github.com> Date: Sat, 17 Aug 2024 19:01:44 -0500 Subject: [PATCH] Update worlds/kh1/Rules.py Co-authored-by: Exempt-Medic <60412657+Exempt-Medic@users.noreply.github.com> --- worlds/kh1/Rules.py | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/worlds/kh1/Rules.py b/worlds/kh1/Rules.py index 61b2a6389abf..c8cb71ffd636 100644 --- a/worlds/kh1/Rules.py +++ b/worlds/kh1/Rules.py @@ -64,10 +64,9 @@ def has_final_rest_door(state: CollectionState, player: int, final_rest_door_req if final_rest_door_requirement == "puppies": if puppies_choice == "individual": return has_puppies_individual(state, player, 99) - elif puppies_choice == "triplets": + if puppies_choice == "triplets": return has_puppies_triplets(state, player, 99) - else: - return has_puppies_all(state, player, 99) + return has_puppies_all(state, player, 99) if final_rest_door_requirement == "postcards": return state.has("Postcard", player, 10) if final_rest_door_requirement == "superbosses":