20 lines
423 B
Plaintext
20 lines
423 B
Plaintext
|
//:://////////////////////////////////////////////
|
||
|
//:: FileName cv_is_neuter
|
||
|
//:://////////////////////////////////////////////
|
||
|
//::
|
||
|
//:: Returns if speaker is generderless
|
||
|
//::
|
||
|
//:://////////////////////////////////////////////
|
||
|
//:://////////////////////////////////////////////
|
||
|
|
||
|
int StartingConditional()
|
||
|
{
|
||
|
|
||
|
// Add the gender restrictions
|
||
|
if(GetGender(GetPCSpeaker()) != GENDER_NONE)
|
||
|
return FALSE;
|
||
|
|
||
|
return TRUE;
|
||
|
}
|
||
|
|