From f0fd8edb1fc36fd3dbe3b7df61da91b3daf9d4c6 Mon Sep 17 00:00:00 2001 From: Bardur Arantsson Date: Tue, 16 Jul 2013 01:06:55 +0200 Subject: Remove auto_notes and take_notes options We always set them to TRUE now. --- src/xtra2.c | 10 +++------- 1 file changed, 3 insertions(+), 7 deletions(-) (limited to 'src/xtra2.c') diff --git a/src/xtra2.c b/src/xtra2.c index a0d500f2..f437c6d1 100644 --- a/src/xtra2.c +++ b/src/xtra2.c @@ -2089,11 +2089,7 @@ void check_experience(void) /* Gain this level's abilities */ apply_level_abilities(p_ptr->lev); - /* If auto-note taking enabled, write a note to the file. - * Only write this note when the level is gained for the first - * time. - */ - if (take_notes && auto_notes) + /* Note level gain */ { char note[80]; @@ -3437,8 +3433,8 @@ bool_ mon_take_hit(int m_idx, int dam, bool_ *fear, cptr note) } } - /* If the player kills a Unique, and the notes options are on, write a note */ - if ((r_ptr->flags1 & RF1_UNIQUE) && take_notes && auto_notes) + /* Make note of unique kills */ + if (r_ptr->flags1 & RF1_UNIQUE) { char note[80]; -- cgit v1.2.3