| 138 | } |
| 139 | |
| 140 | QString getLevelDatFromFS(const QFileInfo &file) |
| 141 | { |
| 142 | QDir worldDir(file.filePath()); |
| 143 | if(!file.isDir() || !worldDir.exists("level.dat")) |
| 144 | { |
| 145 | return QString(); |
| 146 | } |
| 147 | return worldDir.absoluteFilePath("level.dat"); |
| 148 | } |
| 149 | |
| 150 | QByteArray getLevelDatDataFromFS(const QFileInfo &file) |
| 151 | { |
no test coverage detected