When Siren's Bounty attempts to change a tailcock into a Suula one the game crashes with this error message:
I think this is because
While I haven't personally tested it I would also assume that Siren's Bounty changing a tailcunt would also crash the game for the simular reason of
And on a side note: Siren's Bounty has the ability to change your tail into a Suula one but the problem is that while chaning the tail it removes all tail genitals from the tail so I'm just wondering if that's intended behaviour.
Message: e is undefined Stack:
value@https://www.fenoxo.com/play/TiTS/release/main.20f5aeb1.js:1:1820164
value@https://www.fenoxo.com/play/TiTS/release/main.20f5aeb1.js:1:1820023
value@https://www.fenoxo.com/play/TiTS/release/main.20f5aeb1.js:1:8712551
value@https://www.fenoxo.com/play/TiTS/release/main.20f5aeb1.js:1:4930736
value@https://www.fenoxo.com/play/TiTS/release/main.20f5aeb1.js:1:11957521
t@https://www.fenoxo.com/play/TiTS/release/main.20f5aeb1.js:1:11957967
get/<@https://www.fenoxo.com/play/TiTS/release/main.20f5aeb1.js:1:11873011
s@https://www.fenoxo.com/play/TiTS/release/main.20f5aeb1.js:1:10194893
setTimeout handler*I/<@https://www.fenoxo.com/play/TiTS/release/main.20f5aeb1.js:1:10194931
We@https://www.fenoxo.com/play/TiTS/release/vendors.b901b8b9.js:1:394533
Xe@https://www.fenoxo.com/play/TiTS/release/vendors.b901b8b9.js:1:394687
64448/kr/<@https://www.fenoxo.com/play/TiTS/release/vendors.b901b8b9.js:1:412872
value@https://www.fenoxo.com/play/TiTS/release/main.20f5aeb1.js:1:1820164
value@https://www.fenoxo.com/play/TiTS/release/main.20f5aeb1.js:1:1820023
value@https://www.fenoxo.com/play/TiTS/release/main.20f5aeb1.js:1:8712551
value@https://www.fenoxo.com/play/TiTS/release/main.20f5aeb1.js:1:4930736
value@https://www.fenoxo.com/play/TiTS/release/main.20f5aeb1.js:1:11957521
t@https://www.fenoxo.com/play/TiTS/release/main.20f5aeb1.js:1:11957967
get/<@https://www.fenoxo.com/play/TiTS/release/main.20f5aeb1.js:1:11873011
s@https://www.fenoxo.com/play/TiTS/release/main.20f5aeb1.js:1:10194893
setTimeout handler*I/<@https://www.fenoxo.com/play/TiTS/release/main.20f5aeb1.js:1:10194931
We@https://www.fenoxo.com/play/TiTS/release/vendors.b901b8b9.js:1:394533
Xe@https://www.fenoxo.com/play/TiTS/release/vendors.b901b8b9.js:1:394687
64448/kr/<@https://www.fenoxo.com/play/TiTS/release/vendors.b901b8b9.js:1:412872
I think this is because
SirensBounty.js
uses the function shiftCock()
instead of shiftAnyCock()
JavaScript:
if(pc.hasTailCock())
{
output("\n\nYour slippery freeloader works itself into a frenzy as it curls around your body and tries to thrust into your face. Luckily you’re able to stop it from forcing its way down your throat, but you quickly notice that the penis at the end has changed. It’s sprouted a collection of tentacles up and down its shaft, with the largest groupings around the base and crown. <b>Seems its tip has changed to mimic a suula now.</b>");
pc.shiftCock(pc.tailCock, GLOBAL.TYPE_SIREN); // Should be pc.shiftAnyCock, I believe.
pc.clearTailFlags();
pc.addTailFlag(GLOBAL.FLAG_LONG);
pc.addTailFlag(GLOBAL.FLAG_PREHENSILE);
pc.addTailFlag(GLOBAL.FLAG_APHRODISIAC_LACED);
pc.addTailFlag(GLOBAL.FLAG_STINGER_BASED);
pc.addTailFlag(GLOBAL.FLAG_TAILCOCK);
pc.tailCock.cockColor = newTailColor;
}
SirensBounty.js
using shiftVagina()
instead of shiftAnyVagina()
.And on a side note: Siren's Bounty has the ability to change your tail into a Suula one but the problem is that while chaning the tail it removes all tail genitals from the tail so I'm just wondering if that's intended behaviour.