diff options
| author | Mikaƫl Capelle <capelle.mikael@gmail.com> | 2020-11-05 10:43:58 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-11-05 10:43:58 +0100 |
| commit | a63a27840bfa7b08f295bfe682ebc33d70a613b9 (patch) | |
| tree | 3bf8b3cf5d1ea618c7ac894b6bd58b00e4cefeb5 /src/modinforegular.cpp | |
| parent | a7d4f2a0c40d35d547e93994be3f92b6d43a0833 (diff) | |
| parent | 780cc2a35217e887c9bba0573be1146505114521 (diff) | |
Merge pull request #1281 from Holt59/imodinterface-filetree
Add IModInterface::fileTree().
Diffstat (limited to 'src/modinforegular.cpp')
| -rw-r--r-- | src/modinforegular.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/modinforegular.cpp b/src/modinforegular.cpp index 78c04f2d..3f5fc7fc 100644 --- a/src/modinforegular.cpp +++ b/src/modinforegular.cpp @@ -682,7 +682,7 @@ std::set<int> ModInfoRegular::doGetContents() const ModDataContent* contentFeature = m_GamePlugin->feature<ModDataContent>(); if (contentFeature) { - auto result = contentFeature->getContentsFor(contentFileTree()); + auto result = contentFeature->getContentsFor(fileTree()); return std::set<int>(std::begin(result), std::end(result)); } |
