From 9487efb63506027153f310e89cd9aa35fb7bd205 Mon Sep 17 00:00:00 2001 From: Michael Fadely Date: Thu, 22 Feb 2018 18:37:20 -0700 Subject: [PATCH] don't perform custom Super Sonic checks in Super Sonic's story - fixes #18 --- sadx-super-sonic/mod.cpp | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/sadx-super-sonic/mod.cpp b/sadx-super-sonic/mod.cpp index de0e0ab..9f49b6a 100644 --- a/sadx-super-sonic/mod.cpp +++ b/sadx-super-sonic/mod.cpp @@ -197,6 +197,12 @@ extern "C" } #endif + // Don't perform custom Super Sonic checks in Super Sonic's story. + if (LastStoryFlag != 0) + { + return; + } + bool is_blacklisted = is_stage_blacklisted(); for (int i = 0; i < 8; i++)