From 5ba65718b34655423b4f1c546e37dbb4029e6d03 Mon Sep 17 00:00:00 2001 From: gymnast86 Date: Wed, 25 Oct 2023 23:54:47 -0700 Subject: [PATCH] properly revalidate world --- source/entrance.cpp | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/source/entrance.cpp b/source/entrance.cpp index 1ee2c438..1e5f59d3 100644 --- a/source/entrance.cpp +++ b/source/entrance.cpp @@ -1313,6 +1313,11 @@ int ShuffleAllEntrances() { } } + // Verify one more time that everything is okay + if (!ValidateWorld(nullptr)) { + return ENTRANCE_SHUFFLE_FAILURE; + } + return ENTRANCE_SHUFFLE_SUCCESS; }