Compare commits

...

4 Commits

Author SHA1 Message Date
Zsar fbea827f7c Merge branch 'parsingFloatAsIntFix' into 'master'
fix #5 "Float parsed as Int"

Closes #5

See merge request c0ffeeeeeeee/rimworld-animations!12
2024-03-18 04:48:06 +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
Zsar 5a107703d6 fix #5 "Float parsed as Int" 2023-04-16 22:43:57 +02:00
2 changed files with 2 additions and 1 deletions

View File

@ -217,7 +217,7 @@
<headAngle>-49.7821159</headAngle>
<bodyOffsetX>-0.245343938</bodyOffsetX>
<bodyOffsetZ>-0.0595096871</bodyOffsetZ>
<headFacing>2.45901632</headFacing>
<headFacing>2</headFacing>
<bodyFacing>3</bodyFacing>
<tickDuration>33</tickDuration>
</li>

View File

@ -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();