| 1386 | } |
| 1387 | |
| 1388 | static void parseUndefModelRange(FScanner& sc, FScriptPosition& pos) |
| 1389 | { |
| 1390 | int start, end; |
| 1391 | |
| 1392 | if (!sc.GetNumber(start, true)) return; |
| 1393 | if (!sc.GetNumber(end, true)) return; |
| 1394 | if (!ValidateTileRange("undefmodel", start, end, pos)) return; |
| 1395 | for (int i = start; i <= end; i++) modelManager.UndefineTile(i); |
| 1396 | } |
| 1397 | |
| 1398 | static void parseUndefModelOf(FScanner& sc, FScriptPosition& pos) |
| 1399 | { |
nothing calls this directly
no test coverage detected