forked from mirror/openmw-tes3mp
[Server] Add Cell::getDescription() for debugging purposes
This commit is contained in:
parent
887b436ee7
commit
275dfaf05f
2 changed files with 7 additions and 4 deletions
|
@ -29,9 +29,7 @@ void Cell::removePlayer(Player *player)
|
|||
players.erase(it);
|
||||
return;
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
Cell::TPlayers Cell::getPlayers()
|
||||
|
@ -39,6 +37,11 @@ Cell::TPlayers Cell::getPlayers()
|
|||
return players;
|
||||
}
|
||||
|
||||
std::string Cell::getDescription() const
|
||||
{
|
||||
return cell.getDescription();
|
||||
}
|
||||
|
||||
CellController::CellController()
|
||||
{
|
||||
|
||||
|
@ -90,7 +93,6 @@ Cell *CellController::getCellByID(std::string cellid)
|
|||
|
||||
Cell *CellController::addCell(ESM::Cell cellData)
|
||||
{
|
||||
|
||||
LOG_MESSAGE_SIMPLE(Log::LOG_VERBOSE, "Loaded cells: %d", cells.size());
|
||||
auto it = find_if(cells.begin(), cells.end(), [cellData](const Cell *c) {
|
||||
//return c->cell.sRecordId == cellData.sRecordId; // Currently we cannot compare because plugin lists can be loaded in different order
|
||||
|
@ -128,7 +130,6 @@ void CellController::removeCell(Cell *cell)
|
|||
|
||||
void CellController::removePlayer(Cell *cell, Player *player)
|
||||
{
|
||||
|
||||
cell->removePlayer(player);
|
||||
|
||||
if (cell->players.empty())
|
||||
|
|
|
@ -59,6 +59,8 @@ public:
|
|||
void removePlayer(Player *player);
|
||||
|
||||
TPlayers getPlayers();
|
||||
|
||||
std::string getDescription() const;
|
||||
private:
|
||||
TPlayers players;
|
||||
ESM::Cell cell;
|
||||
|
|
Loading…
Reference in a new issue