| 343 | } |
| 344 | |
| 345 | void MapInstance::enqueue_client(MapClientSession *clnt) |
| 346 | { |
| 347 | // m_world stores a ref to m_entities, so its entity mgr is updated as well |
| 348 | m_entities.InsertPlayer(clnt->m_ent); |
| 349 | |
| 350 | //m_queued_clients.push_back(clnt); // enter this client on the waiting list |
| 351 | } |
| 352 | |
| 353 | // Here we would add the handler call in case we get evCombineRequest :) |
| 354 | void MapInstance::dispatch( Event *ev ) |
no test coverage detected