From 0512f3be9af0c874496e15116937b46e73afeb02 Mon Sep 17 00:00:00 2001 From: RJ <122295667+Liderate@users.noreply.github.com> Date: Sun, 12 Jan 2025 06:15:57 -0500 Subject: [PATCH] Add PCR Steam App ID (#35) Co-authored-by: RJ --- src/gamefalloutnv.cpp | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/src/gamefalloutnv.cpp b/src/gamefalloutnv.cpp index 87b4119..1e8e9e9 100644 --- a/src/gamefalloutnv.cpp +++ b/src/gamefalloutnv.cpp @@ -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