| 550 | } |
| 551 | |
| 552 | inline bool ReadFeaturesInline(int32_t x, int32_t y, int32_t z, t_feature *local, t_feature *global) |
| 553 | { |
| 554 | df::map_block *block = Maps::getBlock(x, y, z); |
| 555 | if (!block) |
| 556 | return false; |
| 557 | return Maps::ReadFeatures(block, local, global); |
| 558 | } |
| 559 | bool Maps::ReadFeatures(int32_t x, int32_t y, int32_t z, t_feature *local, t_feature *global) |
| 560 | { |
| 561 | return ReadFeaturesInline(x, y, z, local, global); |
no test coverage detected