# HG changeset patch # User John "Elwin" Edwards # Date 1432213335 14400 # Node ID c8fc38d903a37cc4157921b97ddbb19f5ee032a7 # Parent 301ed6992c2ed3ab5c3f8f6a320a28c30a30111e 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. diff -r 301ed6992c2e -r c8fc38d903a3 arogue7/rogue.c --- 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;