Skip to content

Commit

Permalink
lower min skyrim version
Browse files Browse the repository at this point in the history
  • Loading branch information
Kruziikrel13 committed Dec 19, 2024
1 parent 66554ea commit 1f8fc6b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/export/SKSEPlugin.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ SKSEPlugin_Query(const SKSE::QueryInterface* a_skse, SKSE::PluginInfo* a_info)
}

const auto ver = a_skse->RuntimeVersion();
if (ver < SKSE::RUNTIME_1_6_1130) {
if (ver < SKSE::RUNTIME_1_6_640) {
return false;
}

Expand All @@ -81,7 +81,7 @@ extern "C" DLLEXPORT bool SKSEAPI SKSEPlugin_Load(const SKSE::LoadInterface* a_s
SKSE::AllocTrampoline(14);

const auto ver = a_skse->RuntimeVersion();
if (ver < SKSE::RUNTIME_1_6_1130) {
if (ver < SKSE::RUNTIME_1_6_640) {
return false;
}

Expand Down

0 comments on commit 1f8fc6b

Please sign in to comment.