diff --git a/Defs/ThoughtDefs/Thoughts_SexToy.xml b/Defs/ThoughtDefs/Thoughts_SexToy.xml index 4e1c739..4553883 100644 --- a/Defs/ThoughtDefs/Thoughts_SexToy.xml +++ b/Defs/ThoughtDefs/Thoughts_SexToy.xml @@ -9,8 +9,8 @@
  • - A step above just using your hand. - 4 + More fun than just using your hand. + 3
  • diff --git a/Source/Patches/HarmonyPatch_JobDriver_Masturbate.cs b/Source/Patches/HarmonyPatch_JobDriver_Masturbate.cs index 41dbf7c..80094c3 100644 --- a/Source/Patches/HarmonyPatch_JobDriver_Masturbate.cs +++ b/Source/Patches/HarmonyPatch_JobDriver_Masturbate.cs @@ -17,11 +17,8 @@ namespace RJW_ToysAndMasturbation public static void Postfix(ref JobDriver_Masturbate __instance) { - Log.Message("regular masturbation"); - __instance.satisfaction *= 0.6f; + __instance.satisfaction *= 0.4f; - - } } @@ -33,7 +30,7 @@ namespace RJW_ToysAndMasturbation public static void Postfix(ref JobDriver_MasturbateWithToy __instance) { Log.Message("Sextoy satisfaction modifier: " + __instance.dildo.TryGetComp().Props.satisfactionModifier); - __instance.satisfaction *= 0.6f * __instance.dildo.TryGetComp().Props.satisfactionModifier; + __instance.satisfaction *= 0.4f * __instance.dildo.TryGetComp().Props.satisfactionModifier; }