11 lines
158 B
Plaintext
11 lines
158 B
Plaintext
|
|
||
|
int StartingConditional()
|
||
|
{
|
||
|
|
||
|
// Add the gender restrictions
|
||
|
if(GetGender(GetPCSpeaker()) != GENDER_FEMALE)
|
||
|
return FALSE;
|
||
|
|
||
|
return TRUE;
|
||
|
}
|