is this level referenced in the special level chain? */
| 1445 | #ifndef SFCTOOL |
| 1446 | /* is this level referenced in the special level chain? */ |
| 1447 | s_level * |
| 1448 | Is_special(d_level *lev) |
| 1449 | { |
| 1450 | s_level *levtmp; |
| 1451 | |
| 1452 | for (levtmp = svs.sp_levchn; levtmp; levtmp = levtmp->next) |
| 1453 | if (on_level(lev, &levtmp->dlevel)) |
| 1454 | return levtmp; |
| 1455 | |
| 1456 | return (s_level *) 0; |
| 1457 | } |
| 1458 | |
| 1459 | /* |
| 1460 | * Is this a multi-dungeon branch level? If so, return a pointer to the |
no test coverage detected