Skip to content

Commit

Permalink
Fix alias path construction
Browse files Browse the repository at this point in the history
  • Loading branch information
ASpoonPlaysGames committed Aug 19, 2024
1 parent 28e15b0 commit 177787e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion primedev/core/filesystem/rpakfilesystem.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -333,7 +333,7 @@ static void HandlePakAliases(std::string& originalPath)

if (mod->RpakAliases.find(originalPath) != mod->RpakAliases.end())
{
originalPath = mod->RpakAliases[originalPath];
originalPath = (mod->m_ModDirectory / "paks" / mod->RpakAliases[originalPath]).string();
return;
}
}
Expand Down

0 comments on commit 177787e

Please sign in to comment.