13 lines
178 B
Plaintext
13 lines
178 B
Plaintext
|
//Henchman already has a master
|
||
|
|
||
|
int StartingConditional()
|
||
|
{
|
||
|
|
||
|
// Inspect local variables
|
||
|
|
||
|
if (!(GetIsObjectValid(GetMaster())))
|
||
|
return FALSE;
|
||
|
|
||
|
return TRUE;
|
||
|
}
|