Fix: herms are no longer giving when rape

This commit is contained in:
Platinum 2020-04-22 12:48:49 -07:00
parent ad50e7131e
commit c98ac680c8
2 changed files with 1 additions and 1 deletions

View file

@ -17,7 +17,7 @@ namespace Rimworld_Animations {
public static AnimationDef tryFindAnimation(ref List<Pawn> participants, rjw.xxx.rjwSextype sexType = 0) {
//aggressors first
participants = participants.OrderByDescending(p => p.jobs.curDriver is rjw.JobDriver_SexBaseInitiator).ToList();
participants = participants.OrderBy(p => p.jobs.curDriver is rjw.JobDriver_SexBaseInitiator).ToList();
//fucked first, fucking second
participants = participants.OrderBy(p => rjw.xxx.can_fuck(p)).ToList();