| 2692 | } |
| 2693 | |
| 2694 | void |
| 2695 | domove(void) |
| 2696 | { |
| 2697 | coordxy ux1 = u.ux, uy1 = u.uy; |
| 2698 | |
| 2699 | gd.domove_succeeded = 0L; |
| 2700 | domove_core(); |
| 2701 | /* gd.domove_succeeded is available to make assessments now */ |
| 2702 | if ((gd.domove_succeeded & (DOMOVE_RUSH | DOMOVE_WALK)) != 0) { |
| 2703 | maybe_smudge_engr(ux1, uy1, u.ux, u.uy); |
| 2704 | maybe_adjust_hero_bubble(); |
| 2705 | } |
| 2706 | gd.domove_attempting = 0L; |
| 2707 | |
| 2708 | gk.kickedloc.x = 0, gk.kickedloc.y = 0; |
| 2709 | } |
| 2710 | |
| 2711 | staticfn void |
| 2712 | domove_core(void) |
no test coverage detected