get the map block at a tile coord.
| 424 | Block *BlockAt(DFCoord blockcoord); |
| 425 | /// get the map block at a tile coord. |
| 426 | Block *BlockAtTile(DFCoord coord) { |
| 427 | return BlockAt(df::coord(coord.x>>4,coord.y>>4,coord.z)); |
| 428 | } |
| 429 | |
| 430 | bool ensureBlockAt(df::coord coord) |
| 431 | { |
no outgoing calls
no test coverage detected