* Decrease the amount of time remaining before the tile loop processes this tile. * @param t the house tile * @pre IsTileType(t, MP_HOUSE) */
| 356 | * @pre IsTileType(t, MP_HOUSE) |
| 357 | */ |
| 358 | inline void DecHouseProcessingTime(Tile t) |
| 359 | { |
| 360 | assert(IsTileType(t, MP_HOUSE)); |
| 361 | t.m6() -= 1 << 2; |
| 362 | } |
| 363 | |
| 364 | /** |
| 365 | * Make the tile a house. |
no test coverage detected