| 2815 | } |
| 2816 | |
| 2817 | void GameMap::fireRefreshEntities() |
| 2818 | { |
| 2819 | // Notify changes on visible tiles |
| 2820 | for(Seat* seat : mSeats) |
| 2821 | seat->notifyChangedVisibleTiles(); |
| 2822 | |
| 2823 | for(Creature* creature : mCreatures) |
| 2824 | { |
| 2825 | creature->fireCreatureRefreshIfNeeded(); |
| 2826 | } |
| 2827 | } |
| 2828 | |
| 2829 | void GameMap::addSpell(Spell *spell) |
| 2830 | { |
no test coverage detected