PGCC_PRC8/_module/nss/vat_pheno.nss
Jaysyn904 e51634d39b Initial upload
Initial upload.
2024-10-09 14:17:22 -04:00

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);
}
}
///////////////////////////////////