| 664 | } |
| 665 | |
| 666 | static bool isTransientMaterial(df::tiletype tile) |
| 667 | { |
| 668 | using namespace df::enums::tiletype_material; |
| 669 | |
| 670 | switch (tileMaterial(tile)) |
| 671 | { |
| 672 | case AIR: |
| 673 | case LAVA_STONE: |
| 674 | case PLANT: |
| 675 | case ROOT: |
| 676 | case TREE: |
| 677 | case MUSHROOM: |
| 678 | return true; |
| 679 | |
| 680 | default: |
| 681 | return false; |
| 682 | } |
| 683 | } |
| 684 | |
| 685 | static bool isSkyBlock(Block *b) |
| 686 | { |
no test coverage detected