| 489 | return b ? b->tiletypeAt(tilecoord) : tiletype::Void; |
| 490 | } |
| 491 | bool setTiletypeAt (DFCoord tilecoord, df::tiletype tt, bool force = false) |
| 492 | { |
| 493 | Block *b = BlockAtTile(tilecoord); |
| 494 | return b && b->setTiletypeAt(tilecoord, tt, force); |
| 495 | } |
| 496 | |
| 497 | uint16_t temperature1At (DFCoord tilecoord) |
| 498 | { |
nothing calls this directly
no test coverage detected