| 638 | } |
| 639 | |
| 640 | void Seat::stopVisualDebugEntities() |
| 641 | { |
| 642 | if(mGameMap->isServerGameMap()) |
| 643 | return; |
| 644 | |
| 645 | mIsDebuggingVision = false; |
| 646 | |
| 647 | for (Tile* tile : mVisualDebugEntityTiles) |
| 648 | { |
| 649 | if (tile == nullptr) |
| 650 | continue; |
| 651 | |
| 652 | RenderManager::getSingleton().rrDestroySeatVisionVisualDebug(getId(), tile); |
| 653 | } |
| 654 | mVisualDebugEntityTiles.clear(); |
| 655 | } |
| 656 | |
| 657 | void Seat::refreshVisualDebugEntities(const std::vector<Tile*>& tiles) |
| 658 | { |
no test coverage detected