Skip to content

Commit

Permalink
Add PCR Steam App ID (#35)
Browse files Browse the repository at this point in the history
Co-authored-by: RJ <[email protected]>
  • Loading branch information
Liderate and Liderate authored Jan 12, 2025
1 parent 52ea004 commit 0512f3b
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion src/gamefalloutnv.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -245,7 +245,14 @@ GameFalloutNV::makeSaveGame(QString filePath) const

QString GameFalloutNV::steamAPPId() const
{
return "22380";
if (selectedVariant() == "Steam") {
if (m_GamePath.endsWith("enplczru")) {
return "22490";
} else {
return "22380";
}
}
return QString();
}

QStringList GameFalloutNV::primaryPlugins() const
Expand Down

0 comments on commit 0512f3b

Please sign in to comment.