Closed CapriciousClowns closed 7 years ago
Hmmm, digging around in the files, I see there 'is' something called Satyr Sexuality. But it's not listed anywhere in the CoCED itself, and should be gained automatically when turning into a Satyr. Not having any success attempting to get it, either, even on a fresh character with unlimited Satyr Wine. No related Flags I could find regarding it, either, in the raw data of CoCED. Weird.
Found the problem: In Player.satyrScore()
the wrong lowerBody-type is being checked for.
Here's the diff:
diff --git a/classes/classes/Player.as b/classes/classes/Player.as
index 9dc6ba5..08ab31d 100644
--- a/classes/classes/Player.as
+++ b/classes/classes/Player.as
@@ -1640,7 +1640,7 @@ use namespace kGAMECLASS;
public function satyrScore():Number
{
var satyrCounter:Number = 0;
- if (lowerBody == LOWER_BODY_TYPE_HOOFED)
+ if (lowerBody == LOWER_BODY_TYPE_CLOVEN_HOOFED)
satyrCounter++;
if (tailType == TAIL_TYPE_GOAT)
satyrCounter++;
Oh, good job, Stadler. Thanks!
From the look, it should now be resolved already and will come in 1.4.
Looking at CoCED, the save editor, there IS no such thing as Satyr Sexuality. https://github.com/tmedwards/CoCEd