| 564 | } |
| 565 | |
| 566 | staticfn void |
| 567 | maybe_do_tutorial(void) |
| 568 | { |
| 569 | s_level *sp = find_level("tut-1"); |
| 570 | |
| 571 | if (!sp) |
| 572 | return; |
| 573 | |
| 574 | if (ask_do_tutorial()) { |
| 575 | assign_level(&u.ucamefrom, &u.uz); |
| 576 | iflags.nofollowers = TRUE; |
| 577 | schedule_goto(&sp->dlevel, UTOTYPE_NONE, |
| 578 | "Entering the tutorial.", (char *) 0); |
| 579 | deferred_goto(); |
| 580 | vision_recalc(0); |
| 581 | docrt(); |
| 582 | iflags.nofollowers = FALSE; |
| 583 | } |
| 584 | } |
| 585 | |
| 586 | void |
| 587 | moveloop(boolean resuming) |
no test coverage detected