We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent de81fa1 commit 7805f68Copy full SHA for 7805f68
Spore ModAPI Launcher/Program.cs
@@ -119,11 +119,11 @@ void Execute()
119
{
120
string steamAppIdPath = Path.Combine(this.SporebinPath, "steam_appid.txt");
121
//we have to use Spore GAs appid now, due to steam DRM :(
122
- if (!File.Exists(steamAppIdPath) || File.ReadAllText(steamAppIdPath) != "24720")
+ if (!File.Exists(steamAppIdPath) || File.ReadAllText(steamAppIdPath) != SporePath.GalacticAdventuresSteamID)
123
124
try
125
126
- File.WriteAllText(steamAppIdPath, "24720");
+ File.WriteAllText(steamAppIdPath, SporePath.GalacticAdventuresSteamID);
127
}
128
catch
129
0 commit comments