Compare commits

..

3 commits

Author SHA1 Message Date
Taleir
844904dbce Merge branch 'har-patch-fix' into 'master'
Attempts to get the `DrawAddonsFinalHook` patch working.

See merge request c0ffeeeeeeee/rimworld-animations!10
2024-03-18 07:01:57 +00:00
c0ffeeeeeeee
b5947db5ac Merge branch 'FutaFix' into 'master'
(Probably?) Fixed futa reverse sex incorrect animations

See merge request c0ffeeeeeeee/rimworld-animations!19
2024-03-18 02:35:50 +00:00
Gargule
328ea7ae4d (Probably?) Fixed futa reverse sex incorrect animations 2024-03-17 22:13:02 +00:00

View file

@ -25,6 +25,7 @@ namespace Rimworld_Animations {
participants = participants =
participants.OrderBy(p => participants.OrderBy(p =>
p.jobs.curDriver is rjw.JobDriver_Sex p.jobs.curDriver is rjw.JobDriver_Sex
&& !(p.jobs.curDriver as rjw.JobDriver_Sex).Sexprops.isRevese /*Gargulefix!!!*/
&& !(p.jobs.curDriver as rjw.JobDriver_Sex).Sexprops.isReceiver) && !(p.jobs.curDriver as rjw.JobDriver_Sex).Sexprops.isReceiver)
.OrderBy(p => rjw.xxx.can_fuck(p)) .OrderBy(p => rjw.xxx.can_fuck(p))
.ToList(); .ToList();