19 lines
390 B
Plaintext
19 lines
390 B
Plaintext
////////////////////////////////////
|
|
// Called from a conversation.
|
|
////////////////////////////////////
|
|
void main()
|
|
{
|
|
object oPerson = GetPCSpeaker();
|
|
int sChunky = GetPhenoType(oPerson);
|
|
|
|
if (sChunky == PHENOTYPE_BIG)
|
|
{
|
|
SetPhenoType(PHENOTYPE_NORMAL, oPerson);
|
|
}
|
|
else
|
|
{
|
|
SetPhenoType(PHENOTYPE_BIG, oPerson);
|
|
}
|
|
}
|
|
///////////////////////////////////
|