Skip to content

Commit 575969c

Browse files
committed
ModAPI.Common: remove LauncherSettings.ForceGamePath
1 parent a5d1e84 commit 575969c

File tree

1 file changed

+0
-17
lines changed

1 file changed

+0
-17
lines changed

ModAPI.Common/LauncherSettings.cs

Lines changed: 0 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -41,23 +41,6 @@ public static string SporeGamePath
4141
}
4242
}
4343

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-
6144
private static string GetConfigPath()
6245
{
6346
var programPath = Path.GetDirectoryName(System.Reflection.Assembly.GetEntryAssembly().Location);

0 commit comments

Comments
 (0)