| 146 | } |
| 147 | |
| 148 | MapRecord* FindMapByIndex(int cluster, int num) |
| 149 | { |
| 150 | auto map = FindMapByLevelNum(num); |
| 151 | if (!map && num < 1000) map = FindMapByLevelNum(makelevelnum(cluster, num)); |
| 152 | return map; |
| 153 | } |
| 154 | |
| 155 | MapRecord* FindNextMap(MapRecord* thismap) |
| 156 | { |
no test coverage detected