From 437daf6c310e4e07eeb1ed24fb40f9ac2ff9dacf Mon Sep 17 00:00:00 2001 From: "John \"Elwin\" Edwards" Date: Sat, 31 Oct 2009 15:18:51 +0000 Subject: [PATCH] rogue4: ask about unidentified objects by default --- rogue4/extern.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rogue4/extern.c b/rogue4/extern.c index de00c11..e26a603 100644 --- a/rogue4/extern.c +++ b/rogue4/extern.c @@ -20,7 +20,7 @@ bool p_know[MAXPOTIONS]; /* Does he know what a potion does */ bool r_know[MAXRINGS]; /* Does he know what a ring does */ bool ws_know[MAXSTICKS]; /* Does he know what a stick does */ bool amulet = FALSE; /* He found the amulet */ -bool askme = FALSE; /* Ask about unidentified things */ +bool askme = TRUE; /* Ask about unidentified things */ bool door_stop = FALSE; /* Stop running when we pass a door */ bool fight_flush = FALSE; /* True if toilet input */ bool firstmove = FALSE; /* First move after setting door_stop */