| 328 | } |
| 329 | |
| 330 | void GameEntity::fireRemoveEntityToSeatsWithVision() |
| 331 | { |
| 332 | for(Seat* seat : mSeatsWithVisionNotified) |
| 333 | { |
| 334 | if(seat->getPlayer() == nullptr) |
| 335 | continue; |
| 336 | if(!seat->getPlayer()->getIsHuman()) |
| 337 | continue; |
| 338 | |
| 339 | fireRemoveEntity(seat); |
| 340 | } |
| 341 | |
| 342 | mSeatsWithVisionNotified.clear(); |
| 343 | } |
| 344 | |
| 345 | std::string GameEntity::getGameEntityStreamFormat() |
| 346 | { |
no test coverage detected