Skip to content

Commit

Permalink
Various things
Browse files Browse the repository at this point in the history
Particle lights folder, Enderal downloads by default, and ESL support
  • Loading branch information
Ungeziefi committed Aug 4, 2024
1 parent 5c6fd59 commit 0a73d69
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 14 deletions.
8 changes: 2 additions & 6 deletions src/gameskyrimvr.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -135,8 +135,7 @@ MOBase::VersionInfo GameSkyrimVR::version() const

QList<PluginSetting> GameSkyrimVR::settings() const
{
return {PluginSetting("enderal_downloads", "allow Enderal and Enderal SE downloads",
QVariant(false))};
return {};
}

void GameSkyrimVR::initializeProfile(const QDir& path, ProfileSettings settings) const
Expand Down Expand Up @@ -205,10 +204,7 @@ QStringList GameSkyrimVR::primarySources() const

QStringList GameSkyrimVR::validShortNames() const
{
QStringList shortNames{"Skyrim", "SkyrimSE"};
if (m_Organizer->pluginSetting(name(), "enderal_downloads").toBool()) {
shortNames.append({"Enderal", "EnderalSE"});
}
QStringList shortNames{"Skyrim", "SkyrimSE", "Enderal", "EnderalSE"};
return shortNames;
}

Expand Down
17 changes: 9 additions & 8 deletions src/skyrimvrmoddatachecker.h
Original file line number Diff line number Diff line change
Expand Up @@ -12,18 +12,19 @@ class SkyrimVRModDataChecker : public GamebryoModDataChecker
virtual const FileNameSet& possibleFolderNames() const override
{
static FileNameSet result{
"fonts", "interface", "menus", "meshes",
"music", "scripts", "shaders", "sound",
"strings", "textures", "trees", "video",
"facegen", "materials", "skse", "distantlod",
"asi", "Tools", "MCM", "distantland",
"mits", "dllplugins", "CalienteTools", "NetScriptFramework",
"shadersfx", "Nemesis_Engine"};
"fonts", "interface", "menus", "meshes",
"music", "scripts", "shaders", "sound",
"strings", "textures", "trees", "video",
"facegen", "materials", "skse", "distantlod",
"asi", "Tools", "MCM", "distantland",
"mits", "dllplugins", "CalienteTools", "NetScriptFramework",
"shadersfx", "Nemesis_Engine", "Platform", "grass",
"ParticleLights"};
return result;
}
virtual const FileNameSet& possibleFileExtensions() const override
{
static FileNameSet result{"esp", "esm", "bsa", "modgroups", "ini"};
static FileNameSet result{"esp", "esm", "esl", "bsa", "modgroups", "ini"};
return result;
}
};
Expand Down

0 comments on commit 0a73d69

Please sign in to comment.