diff --git a/SKSE/Plugins/EnderalSE.dll b/SKSE/Plugins/EnderalSE.dll index f169fb6c..79881c56 100644 --- a/SKSE/Plugins/EnderalSE.dll +++ b/SKSE/Plugins/EnderalSE.dll @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:e5a11c44f90d68c3ce54dc019838aa64d1420799dcc2641c454a85ce3b87dd71 -size 719872 +oid sha256:6c5a759580e8541d086b08dddf8fd9f63749add3896d35dd9c6af843dc2c56c3 +size 717824 diff --git a/scripts/_00e_playersetupscript.pex b/scripts/_00e_playersetupscript.pex index acdf3b3a..e380ebf9 100644 Binary files a/scripts/_00e_playersetupscript.pex and b/scripts/_00e_playersetupscript.pex differ diff --git a/source/Enderal DLL/src/CheckInvalidForms.h b/source/Enderal DLL/src/CheckInvalidForms.h index 02f21afd..423a3b80 100644 --- a/source/Enderal DLL/src/CheckInvalidForms.h +++ b/source/Enderal DLL/src/CheckInvalidForms.h @@ -10,27 +10,6 @@ inline bool DataFileExists(std::string filename, int maxSize = 1000000) return std::filesystem::exists(path) && std::filesystem::file_size(path) > maxSize; } -inline void CheckBlacklist() -{ - const auto dataHandler = RE::TESDataHandler::GetSingleton(); - - if (!dataHandler) { - return; - } - - std::string filenames[1] = { - "Enderal_FS_More_Affinities.esp", - }; - - for (short i = 0; i < 1; i++) { - if (dataHandler->LookupLoadedModByName(filenames[i])) { - aModNames.insert(filenames[i]); - RE::DebugMessageBox(std::format("{} is incompatible with Enderal SE.\nCheck console for the list of flagged mods.", filenames[i]).c_str()); - RE::ConsoleLog::GetSingleton()->Print(std::format("{} is incompatible", filenames[i]).c_str()); - } - } -} - inline void NotifyInvalidForm(const RE::TESForm* form) { if (!form) { diff --git a/source/Enderal DLL/src/Util.h b/source/Enderal DLL/src/Util.h index e2d67ec6..533d2349 100644 --- a/source/Enderal DLL/src/Util.h +++ b/source/Enderal DLL/src/Util.h @@ -54,7 +54,6 @@ inline void CheckIncompatibleMods() RE::ConsoleLog::GetSingleton()->Print("Loaded SureAI's Enderal: Forgotten Stories | Special Edition v2.0.x by Eddoursul and contributors"); } - CheckBlacklist(); CheckWorldspaces(); CheckUnconvertedMap(); CheckSkyrimCells(); @@ -67,8 +66,6 @@ inline void CheckIncompatibleMods() inline bool PapyrusGlobalFunctionExists(const char* scriptName, const char* funcName) { - logger::info("Real - GetGlobalFunctionNames of {}", scriptName); - std::vector functionNames; RE::BSTSmartPointer typeInfoPtr; RE::BSScript::Internal::VirtualMachine::GetSingleton()->GetScriptObjectType(RE::BSFixedString(scriptName), typeInfoPtr); auto functionCount = typeInfoPtr->GetNumGlobalFuncs(); diff --git a/source/scripts/_00e_playersetupscript.psc b/source/scripts/_00e_playersetupscript.psc index dafbeea5..03cf3ea0 100644 --- a/source/scripts/_00e_playersetupscript.psc +++ b/source/scripts/_00e_playersetupscript.psc @@ -45,11 +45,6 @@ Event OnInit() kQuest.Start() endwhile - If Game.GetModByName("Enderal_FS_More_Affinities.esp") != 255 - Game.QuitToMainMenu() - Debug.MessageBox("Enderal_FS_More_Affinities.esp is outdated and does not work with Enderal SE. Please, uninstall or update the mod.") - EndIf - EndEvent Event OnPlayerLoadGame()