We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a5d1e84 commit 575969cCopy full SHA for 575969c
ModAPI.Common/LauncherSettings.cs
@@ -41,23 +41,6 @@ public static string SporeGamePath
41
}
42
43
44
- public static bool ForceGamePath
45
- {
46
- get
47
48
- string value = null;
49
- bool result = false;
50
- _dictionary.TryGetValue("ForceGamePath", out value);
51
- if (value == null) result = false;
52
- else result = Boolean.TryParse(value, out result);
53
- return result;
54
- }
55
- set
56
57
- _dictionary["ForceGamePath"] = value ? "true" : "false";
58
59
60
-
61
private static string GetConfigPath()
62
{
63
var programPath = Path.GetDirectoryName(System.Reflection.Assembly.GetEntryAssembly().Location);
0 commit comments