Skip to content

Commit

Permalink
Fix typos (#63)
Browse files Browse the repository at this point in the history
  • Loading branch information
Olympic1 authored and sarbian committed Nov 9, 2016
1 parent 854aacb commit 6fcbb62
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions CustomConfigsManager.cs
Original file line number Diff line number Diff line change
Expand Up @@ -11,13 +11,13 @@ internal void Start()
{
if (HighLogic.CurrentGame.Parameters.Career.TechTreeUrl != MMPatchLoader.techTreeFile && File.Exists(MMPatchLoader.techTreePath))
{
log("Setting moddeed tech tree as the active one");
log("Setting modded tech tree as the active one");
HighLogic.CurrentGame.Parameters.Career.TechTreeUrl = MMPatchLoader.techTreeFile;
}

if (PhysicsGlobals.PhysicsDatabaseFilename != MMPatchLoader.physicsFile && File.Exists(MMPatchLoader.physicsPath))
{
log("Setting moddeed physics as the active one");
log("Setting modded physics as the active one");

PhysicsGlobals.PhysicsDatabaseFilename = MMPatchLoader.physicsFile;

Expand Down
4 changes: 2 additions & 2 deletions moduleManager.cs
Original file line number Diff line number Diff line change
Expand Up @@ -709,7 +709,7 @@ private List<string> PrePatchInit()
catch (ArgumentOutOfRangeException)
{
log("Skipping :FOR init for line " + name +
". The line most likely contain a space that should be removed");
". The line most likely contains a space that should be removed");
errorCount++;
}
}
Expand Down Expand Up @@ -1988,7 +1988,7 @@ public ConfigNode ModifyNode(ConfigNode original, ConfigNode mod)
}
else
{
log("Error - Cannot parse variable search when replacing (%) key " + valName + " = " +
log("Error - Cannot parse variable search when replacing (&) key " + valName + " = " +
modVal.value);
errorCount++;
}
Expand Down

0 comments on commit 6fcbb62

Please sign in to comment.