Output message when changing fastmove mode while cursor targetting

This commit is contained in:
Patric Mueller
2021-02-19 10:36:39 +01:00
parent bb57bf16f1
commit bea69f39f3
2 changed files with 3 additions and 0 deletions

View File

@@ -383,6 +383,7 @@ grammar bit: "you hear a [AEF] note squeak in the distance" (should be "an")
curses interface failed to honor menu_xxx option settings for menu interaction curses interface failed to honor menu_xxx option settings for menu interaction
during engraving, spaces were counted instead of non-spaces during engraving, spaces were counted instead of non-spaces
when an explosion scatters objects, make any that fly over sinks stop there when an explosion scatters objects, make any that fly over sinks stop there
output message when changing fastmove mode while cursor targetting
Fixes to 3.7.0-x Problems that Were Exposed Via git Repository Fixes to 3.7.0-x Problems that Were Exposed Via git Repository

View File

@@ -840,6 +840,8 @@ getpos(coord *ccp, boolean force, const char *goal)
iflags.getloc_moveskip = !iflags.getloc_moveskip; iflags.getloc_moveskip = !iflags.getloc_moveskip;
pline("%skipping over similar terrain when fastmoving the cursor.", pline("%skipping over similar terrain when fastmoving the cursor.",
iflags.getloc_moveskip ? "S" : "Not s"); iflags.getloc_moveskip ? "S" : "Not s");
msg_given = TRUE;
goto nxtc;
} else if ((cp = index(mMoOdDxX, c)) != 0) { /* 'm|M', 'o|O', &c */ } else if ((cp = index(mMoOdDxX, c)) != 0) { /* 'm|M', 'o|O', &c */
/* nearest or farthest monster or object or door or unexplored */ /* nearest or farthest monster or object or door or unexplored */
int gtmp = (int) (cp - mMoOdDxX), /* 0..7 */ int gtmp = (int) (cp - mMoOdDxX), /* 0..7 */