| 141 | } |
| 142 | |
| 143 | FallingBlocksWorld::FallingBlocksWorld(WorldServer* w) |
| 144 | : m_worldServer(w), m_materialDatabase(Root::singleton().materialDatabase()) {} |
| 145 | |
| 146 | FallingBlockType FallingBlocksWorld::blockType(Vec2I const& pos) { |
| 147 | auto const& tile = m_worldServer->getServerTile(pos, true); |
nothing calls this directly
no test coverage detected