From 2564f1bfc1f4bdd31fb9dc399c08e65982f758ff Mon Sep 17 00:00:00 2001 From: Sauceke <76826783+Sauceke@users.noreply.github.com> Date: Wed, 27 Oct 2021 02:23:06 +0300 Subject: [PATCH] Small UI changes --- LoveMachine.Core/PluginInitializer.cs | 2 +- LoveMachine.HS2/HS2LoveMachine.cs | 2 +- LoveMachine.KK/KKLoveMachine.cs | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/LoveMachine.Core/PluginInitializer.cs b/LoveMachine.Core/PluginInitializer.cs index e628e264..1f77abb6 100644 --- a/LoveMachine.Core/PluginInitializer.cs +++ b/LoveMachine.Core/PluginInitializer.cs @@ -160,7 +160,7 @@ private void InitSettings() CoreConfig.HardSexIntensity = plugin.Config.Bind( section: strokerSettingsTitle, key: "Hard Sex Intensity", - defaultValue: 0, + defaultValue: 50, new ConfigDescription( "Makes hard sex animations feel hard", new AcceptableValueRange(0, 100), diff --git a/LoveMachine.HS2/HS2LoveMachine.cs b/LoveMachine.HS2/HS2LoveMachine.cs index e1634550..6671e587 100644 --- a/LoveMachine.HS2/HS2LoveMachine.cs +++ b/LoveMachine.HS2/HS2LoveMachine.cs @@ -10,7 +10,7 @@ internal class HS2LoveMachine : BaseUnityPlugin private void Start() { var girls = new string[] { "First girl", "Second girl", "Off" }; - var actions = new string[] { "Closest" } + var actions = new string[] { "Auto" } .Concat(HoneySelect2ButtplugController.femaleBones.Values) .ToArray(); CoreConfig.Logger = Logger; diff --git a/LoveMachine.KK/KKLoveMachine.cs b/LoveMachine.KK/KKLoveMachine.cs index e0c07535..3696fd51 100644 --- a/LoveMachine.KK/KKLoveMachine.cs +++ b/LoveMachine.KK/KKLoveMachine.cs @@ -14,7 +14,7 @@ public class KKLoveMachine : BaseUnityPlugin private void Start() { var girls = new string[] { "First girl", "Second girl", "Off" }; - var actions = new string[] { "Closest" } + var actions = new string[] { "Auto" } .Concat(KoikatsuButtplugController.femaleBones.Values) .ToArray(); CoreConfig.Logger = Logger;