| 1752 | } |
| 1753 | |
| 1754 | static void update_cache( map &m ) |
| 1755 | { |
| 1756 | // Why twice? See vision_test.cpp |
| 1757 | m.update_visibility_cache( 0 ); |
| 1758 | m.invalidate_map_cache( 0 ); |
| 1759 | m.build_map_cache( 0 ); |
| 1760 | m.update_visibility_cache( 0 ); |
| 1761 | m.invalidate_map_cache( 0 ); |
| 1762 | m.build_map_cache( 0 ); |
| 1763 | } |
| 1764 | |
| 1765 | TEST_CASE( "activity interruption by distractions", "[activity][interruption]" ) |
| 1766 | { |
no test coverage detected