* What gets called when this gets created, different from constructor */
| 400 | * What gets called when this gets created, different from constructor |
| 401 | */ |
| 402 | void AIClient::onAdd( const char *nameSpace ) { |
| 403 | |
| 404 | // This doesn't work... |
| 405 | // |
| 406 | if( String::compare( nameSpace, mNameSpace->mName ) ) { |
| 407 | Con::linkNamespaces( mNameSpace->mName, nameSpace ); |
| 408 | mNameSpace = Con::lookupNamespace( nameSpace ); |
| 409 | } |
| 410 | |
| 411 | throwCallback( "onAdd" ); |
| 412 | } |
| 413 | |
| 414 | // -------------------------------------------------------------------------------------------- |
| 415 | // Console Functions |
no test coverage detected