using HarmonyLib; using rjw; namespace Rimworld_Animations { [HarmonyPatch(typeof(JobDriver_Sex), "PlaySexSound")] class HarmonyPatch_PlaySexSounds { public static bool Prefix(JobDriver_Sex __instance) { return false; } } }