mirror of
https://github.com/geode-sdk/geode.git
synced 2024-11-23 16:07:52 -05:00
make Mod::getResourcesDir return resources/{mod.id}
This commit is contained in:
parent
8c969a8628
commit
22a6745b74
1 changed files with 1 additions and 1 deletions
|
@ -73,7 +73,7 @@ ghc::filesystem::path Mod::getBinaryPath() const {
|
||||||
}
|
}
|
||||||
|
|
||||||
ghc::filesystem::path Mod::getResourcesDir() const {
|
ghc::filesystem::path Mod::getResourcesDir() const {
|
||||||
return dirs::getModRuntimeDir() / this->getID() / "resources";
|
return dirs::getModRuntimeDir() / this->getID() / "resources" / this->getID();
|
||||||
}
|
}
|
||||||
|
|
||||||
Result<> Mod::saveData() {
|
Result<> Mod::saveData() {
|
||||||
|
|
Loading…
Reference in a new issue