mirror of
https://gitgud.io/c0ffeeeeeeee/rimworld-animations.git
synced 2024-08-15 00:43:45 +00:00
14 lines
280 B
C#
14 lines
280 B
C#
using HarmonyLib;
|
|
using rjw;
|
|
|
|
namespace Rimworld_Animations
|
|
{
|
|
[HarmonyPatch(typeof(JobDriver_Sex), "PlaySexSound")]
|
|
class HarmonyPatch_PlaySexSounds
|
|
{
|
|
public static bool Prefix(JobDriver_Sex __instance)
|
|
{
|
|
return false;
|
|
}
|
|
}
|
|
}
|