fix AutoSpeed config defaulting to normal walking speed

This commit is contained in:
Jesse Plamondon-Willard 2017-08-05 23:08:11 -04:00
parent f5069f8ca5
commit 81af6a4767
2 changed files with 2 additions and 1 deletions

View File

@ -4,6 +4,6 @@
internal class ModConfig
{
/// <summary>The added speed.</summary>
public int Speed { get; set; } = 1;
public int Speed { get; set; } = 5;
}
}

View File

@ -24,4 +24,5 @@ set the speed you want (higher values are faster).
1.4:
* Switched to standard JSON config file.
* Fixed config defaulting to normal speed.
* Internal refactoring.