Make mouse clicklook report only the specific tile

Previously the mouse clicklook mentioned every tile that matched
the character symbol, leading to overload of information and
if playing with tiles, it was mostly useless. Also the most
important bit - the tile info - was last in the text.

Now mouse clicklook only reports the exact tile information
that was clicked on.
This commit is contained in:
Pasi Kallinen
2022-08-25 17:11:43 +03:00
parent b8f8b170a8
commit 51ac21bc88
3 changed files with 4 additions and 4 deletions

View File

@@ -6277,7 +6277,7 @@ doclicklook(void)
return ECMD_OK;
g.context.move = FALSE;
(void) do_look(2, &g.clicklook_cc);
auto_describe(g.clicklook_cc.x, g.clicklook_cc.y);
return ECMD_OK;
}