13 lines
190 B
Plaintext
13 lines
190 B
Plaintext
|
#include "prc_inc_racial"
|
||
|
|
||
|
int StartingConditional()
|
||
|
{
|
||
|
|
||
|
// Reject player races
|
||
|
if(MyPRCGetRacialType(GetPCSpeaker()) == RACIAL_TYPE_GNOME)
|
||
|
return TRUE;
|
||
|
|
||
|
|
||
|
return FALSE;
|
||
|
}
|