11 lines
162 B
Plaintext
11 lines
162 B
Plaintext
|
#include "prc_inc_spells"
|
||
|
|
||
|
int StartingConditional()
|
||
|
{
|
||
|
if(MyPRCGetRacialType(GetPCSpeaker()) == RACIAL_TYPE_GNOME)
|
||
|
return TRUE;
|
||
|
|
||
|
return FALSE;
|
||
|
}
|
||
|
|