From 81af6a4767b7753c2e743b340b2fe8c4bec5673b Mon Sep 17 00:00:00 2001 From: Jesse Plamondon-Willard Date: Sat, 5 Aug 2017 23:08:11 -0400 Subject: [PATCH] fix AutoSpeed config defaulting to normal walking speed --- GeneralMods/AutoSpeed/Framework/ModConfig.cs | 2 +- GeneralMods/AutoSpeed/README.md | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/GeneralMods/AutoSpeed/Framework/ModConfig.cs b/GeneralMods/AutoSpeed/Framework/ModConfig.cs index e4f0c68f..ee3eef38 100644 --- a/GeneralMods/AutoSpeed/Framework/ModConfig.cs +++ b/GeneralMods/AutoSpeed/Framework/ModConfig.cs @@ -4,6 +4,6 @@ internal class ModConfig { /// The added speed. - public int Speed { get; set; } = 1; + public int Speed { get; set; } = 5; } } diff --git a/GeneralMods/AutoSpeed/README.md b/GeneralMods/AutoSpeed/README.md index 1d101d35..159a4309 100644 --- a/GeneralMods/AutoSpeed/README.md +++ b/GeneralMods/AutoSpeed/README.md @@ -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.