| 2156 | } |
| 2157 | |
| 2158 | bool WorldClient::isUnderground(Vec2F const& pos) const { |
| 2159 | if (!inWorld()) |
| 2160 | return true; |
| 2161 | return m_worldTemplate->undergroundLevel() >= pos[1]; |
| 2162 | } |
| 2163 | |
| 2164 | bool WorldClient::disableDeathDrops() const { |
| 2165 | if (const auto& parameters = m_worldTemplate->worldParameters()) |
no test coverage detected