mirror of
https://gitgud.io/c0ffeeeeeeee/rimworld-animations.git
synced 2024-08-15 00:43:45 +00:00
Fix: herms are no longer giving when rape
This commit is contained in:
parent
ad50e7131e
commit
c98ac680c8
2 changed files with 1 additions and 1 deletions
Binary file not shown.
|
@ -17,7 +17,7 @@ namespace Rimworld_Animations {
|
||||||
public static AnimationDef tryFindAnimation(ref List<Pawn> participants, rjw.xxx.rjwSextype sexType = 0) {
|
public static AnimationDef tryFindAnimation(ref List<Pawn> participants, rjw.xxx.rjwSextype sexType = 0) {
|
||||||
|
|
||||||
//aggressors first
|
//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
|
//fucked first, fucking second
|
||||||
participants = participants.OrderBy(p => rjw.xxx.can_fuck(p)).ToList();
|
participants = participants.OrderBy(p => rjw.xxx.can_fuck(p)).ToList();
|
||||||
|
|
Loading…
Reference in a new issue