Skip to content

Commit

Permalink
Small UI changes
Browse files Browse the repository at this point in the history
  • Loading branch information
Sauceke committed Oct 26, 2021
1 parent cd5db62 commit 2564f1b
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion LoveMachine.Core/PluginInitializer.cs
Original file line number Diff line number Diff line change
Expand Up @@ -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<int>(0, 100),
Expand Down
2 changes: 1 addition & 1 deletion LoveMachine.HS2/HS2LoveMachine.cs
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down
2 changes: 1 addition & 1 deletion LoveMachine.KK/KKLoveMachine.cs
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down

0 comments on commit 2564f1b

Please sign in to comment.