| 1539 | } |
| 1540 | |
| 1541 | void cmdHandler_SetSpawnLocation(const QStringList ¶ms, MapClientSession &sess) |
| 1542 | { |
| 1543 | if(params.size() == 0) |
| 1544 | { |
| 1545 | // No SpawnLocation given, bail. |
| 1546 | return; |
| 1547 | } |
| 1548 | const QString spawnLocation = params.join(" "); |
| 1549 | sess.m_current_map->setSpawnLocation(*sess.m_ent, spawnLocation); |
| 1550 | } |
| 1551 | |
| 1552 | void cmdHandler_LFG(const QStringList &/*params*/, MapClientSession &sess) |
| 1553 | { |
nothing calls this directly
no test coverage detected