| 485 | } |
| 486 | |
| 487 | void GameMap::addCreature(Creature *cc) |
| 488 | { |
| 489 | OD_LOG_INF(serverStr() + "Adding Creature " + cc->getName() |
| 490 | + ", seatId=" + (cc->getSeat() != nullptr ? Helper::toString(cc->getSeat()->getId()) : std::string("null"))); |
| 491 | |
| 492 | mCreatures.push_back(cc); |
| 493 | } |
| 494 | |
| 495 | void GameMap::removeCreature(Creature *c) |
| 496 | { |
no test coverage detected