21 lines
447 B
Plaintext
21 lines
447 B
Plaintext
|
//:://////////////////////////////////////////////
|
||
|
//:: FileName cv_is_sexless
|
||
|
//:://////////////////////////////////////////////
|
||
|
//::
|
||
|
//:: Returns if speaker is "other" in regards to
|
||
|
//:: gender.
|
||
|
//::
|
||
|
//:://////////////////////////////////////////////
|
||
|
//:://////////////////////////////////////////////
|
||
|
|
||
|
int StartingConditional()
|
||
|
{
|
||
|
|
||
|
// Add the gender restrictions
|
||
|
if(GetGender(GetPCSpeaker()) != GENDER_OTHER)
|
||
|
return FALSE;
|
||
|
|
||
|
return TRUE;
|
||
|
}
|
||
|
|