Mercurial > hg > early-roguelike
changeset 148:c8fc38d903a3
arogue7: ask about unidentified objects by default.
The 'askme' option is on in some games and off in others, probably due
to authorial preference. I am going to be consistent and turn it on in
all of them.
author | John "Elwin" Edwards |
---|---|
date | Thu, 21 May 2015 09:02:15 -0400 |
parents | 301ed6992c2e |
children | 9aa9b9a2e159 |
files | arogue7/rogue.c |
diffstat | 1 files changed, 1 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/arogue7/rogue.c Wed May 20 15:15:29 2015 -0400 +++ b/arogue7/rogue.c Thu May 21 09:02:15 2015 -0400 @@ -130,7 +130,7 @@ bool jump = FALSE; bool slow_invent = FALSE; bool firstmove = FALSE; -bool askme = FALSE; +bool askme = TRUE; bool in_shell = FALSE; bool daytime = TRUE; bool use_savedir = FALSE;