generated from Jaysyn/ModuleTemplate
18 lines
321 B
Plaintext
18 lines
321 B
Plaintext
//
|
|
// NWSetSubrace14
|
|
//
|
|
// Set the subrace of the conversing object to 'ghostwise halfling'
|
|
//
|
|
// (c) Shir'le E. Illios, 2002 (shirle@drowwanderer.com)
|
|
//
|
|
////////////////////////////////////////////////////////
|
|
|
|
#include "subraces"
|
|
|
|
|
|
void main()
|
|
{
|
|
SEI_SetSubraceVar( OBJECT_SELF, SUBRACE_HALFLING_GHOSTWISE );
|
|
}
|
|
|