15 lines
248 B
Plaintext
15 lines
248 B
Plaintext
#include "mn_i_initchar"
|
|
#include "mn_i_validate"
|
|
|
|
// void main(){}
|
|
|
|
void mn_ClientEnter()
|
|
{
|
|
object oPC = GetEnteringObject();
|
|
if (GetIsPC(oPC))
|
|
{
|
|
handleEnteringPC(oPC);
|
|
//validate( oPC ); // FIXME move this logic later
|
|
}
|
|
}
|