using Verse; using rjw; namespace RJWSexperience.Ideology { public static class BestialityUtility { public static bool CanDoLewdAnimalWork(Pawn human, Pawn animal) { if (human.Ideo == null) { return false; } if (human.Ideo.HasPrecept(RsiDefOf.Precept.AnimalConnection_Lovin) || human.Ideo.HasPrecept(RsiDefOf.Precept.AnimalConnection_LovinBond)) { return SexAppraiser.would_fuck_animal(human, animal) > 0; } else return false; } } }