mirror of
https://gitgud.io/c0ffeeeeeeee/rimworld-animations.git
synced 2024-08-15 00:43:45 +00:00
futa categorizing
This commit is contained in:
parent
218cd6a025
commit
eafe5a0081
2 changed files with 9 additions and 0 deletions
Binary file not shown.
|
@ -9,6 +9,7 @@ using rjw.Modules.Interactions.Objects;
|
||||||
using UnityEngine;
|
using UnityEngine;
|
||||||
using Verse;
|
using Verse;
|
||||||
using Verse.AI;
|
using Verse.AI;
|
||||||
|
using rjw.Modules.Interactions.Enums;
|
||||||
|
|
||||||
namespace Rimworld_Animations {
|
namespace Rimworld_Animations {
|
||||||
public static class AnimationUtility {
|
public static class AnimationUtility {
|
||||||
|
@ -21,6 +22,14 @@ namespace Rimworld_Animations {
|
||||||
|
|
||||||
InteractionWithExtension interaction = InteractionHelper.GetWithExtension(sexProps.dictionaryKey);
|
InteractionWithExtension interaction = InteractionHelper.GetWithExtension(sexProps.dictionaryKey);
|
||||||
|
|
||||||
|
|
||||||
|
if(interaction.HasInteractionTag(InteractionTag.Reverse))
|
||||||
|
{
|
||||||
|
Pawn buffer = participants[1];
|
||||||
|
participants[1] = participants[0];
|
||||||
|
participants[0] = buffer;
|
||||||
|
}
|
||||||
|
|
||||||
participants =
|
participants =
|
||||||
participants.OrderBy(p => p.jobs.curDriver is rjw.JobDriver_SexBaseInitiator)
|
participants.OrderBy(p => p.jobs.curDriver is rjw.JobDriver_SexBaseInitiator)
|
||||||
.OrderBy(p => rjw.xxx.can_fuck(p))
|
.OrderBy(p => rjw.xxx.can_fuck(p))
|
||||||
|
|
Loading…
Reference in a new issue