From 5a107703d6a833c00b34d6bc4d4a268bd3fa581e Mon Sep 17 00:00:00 2001 From: Zsar Date: Sun, 16 Apr 2023 22:43:57 +0200 Subject: [PATCH 1/2] fix #5 "Float parsed as Int" --- 1.4/Defs/AnimationDefs/LezThreesome.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/1.4/Defs/AnimationDefs/LezThreesome.xml b/1.4/Defs/AnimationDefs/LezThreesome.xml index 49aecc2..3893a13 100644 --- a/1.4/Defs/AnimationDefs/LezThreesome.xml +++ b/1.4/Defs/AnimationDefs/LezThreesome.xml @@ -217,7 +217,7 @@ -49.7821159 -0.245343938 -0.0595096871 - 2.45901632 + 2 3 33 From 328ea7ae4dc01ba08f071222665d4c255261d9de Mon Sep 17 00:00:00 2001 From: Gargule Date: Sun, 17 Mar 2024 22:13:02 +0000 Subject: [PATCH 2/2] (Probably?) Fixed futa reverse sex incorrect animations --- 1.4/Source/Utilities/AnimationUtility.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/1.4/Source/Utilities/AnimationUtility.cs b/1.4/Source/Utilities/AnimationUtility.cs index 396eab3..fa60198 100644 --- a/1.4/Source/Utilities/AnimationUtility.cs +++ b/1.4/Source/Utilities/AnimationUtility.cs @@ -25,6 +25,7 @@ namespace Rimworld_Animations { participants = participants.OrderBy(p => 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) .OrderBy(p => rjw.xxx.can_fuck(p)) .ToList();