Skip to content

Commit

Permalink
Add Root and RaceMenuPresets to possible data folders
Browse files Browse the repository at this point in the history
# Motivations
- `Root` is a data directory used by the popular Root Builder plugin https://kezyma.github.io/?p=rootbuilder
- `RaceMenuPresets` is a data directory used by a popular mod for FNV Character Preset Menu https://www.nexusmods.com/newvegas/mods/72789

# Modifications
- Add `Root` and `RaceMenuPresets to the list of possible data folder names
- Run clang-format against the header file
  • Loading branch information
Twinki14 committed May 26, 2024
1 parent 66bfb1e commit 897af1f
Showing 1 changed file with 29 additions and 9 deletions.
38 changes: 29 additions & 9 deletions src/falloutttwmoddatachecker.h
Original file line number Diff line number Diff line change
Expand Up @@ -11,15 +11,35 @@ class FalloutTTWModDataChecker : public GamebryoModDataChecker
protected:
virtual const FileNameSet& possibleFolderNames() const override
{
static FileNameSet result{"fonts", "interface", "menus",
"meshes", "music", "scripts",
"shaders", "sound", "strings",
"textures", "trees", "video",
"facegen", "materials", "nvse",
"distantlod", "asi", "Tools",
"MCM", "distantland", "mits",
"dllplugins", "CalienteTools", "shadersfx",
"config", "KEYWORDS", "BaseObjectSwapper"};
static FileNameSet result{"fonts",
"interface",
"menus",
"meshes",
"music",
"scripts",
"shaders",
"sound",
"strings",
"textures",
"trees",
"video",
"facegen",
"materials",
"nvse",
"distantlod",
"asi",
"Tools",
"MCM",
"distantland",
"mits",
"dllplugins",
"CalienteTools",
"shadersfx",
"config",
"KEYWORDS",
"BaseObjectSwapper",
"Root",
"RaceMenuPresets"};
return result;
}
virtual const FileNameSet& possibleFileExtensions() const override
Expand Down

0 comments on commit 897af1f

Please sign in to comment.