From 94b05cac995313d185760cc29946fe7267cb1a45 Mon Sep 17 00:00:00 2001 From: "John \"Elwin\" Edwards" Date: Thu, 21 May 2015 09:02:15 -0400 Subject: [PATCH] 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. --- arogue7/rogue.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/arogue7/rogue.c b/arogue7/rogue.c index 9529b28..0bd8fd7 100644 --- a/arogue7/rogue.c +++ b/arogue7/rogue.c @@ -130,7 +130,7 @@ bool door_stop = FALSE; 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;