totalVaginas()
function in creature.as
originally could take a type
argument which would return number of vaginas matching specified type:
JavaScript:
public function totalVaginas(type: int = -1): Number {
return vaginaTotal(type);
}
this functionality is missing in the ported code in
creature.js
:
JavaScript:
totalVaginas()
{
return this.vaginaTotal();
}
this affects few transformatives (cerespirin, goblinola, muffstick) which try to detect whether the PC has orifices of specific type (and in JS port receive answer that yes, they do even when they actually do not), as well as few other places in the code which leverage this functionality.
(by the looks of it,
vaginaTotal()
in creature.js
is capable of taking type
argument, so there's no real reason why it can't be passed one now from totalVaginas()
)
Last edited: