summaryrefslogtreecommitdiff
path: root/src/xtra2.c
diff options
context:
space:
mode:
authorBardur Arantsson <bardur@scientician.net>2013-07-16 01:06:55 +0200
committerBardur Arantsson <bardur@scientician.net>2013-08-08 16:33:29 +0200
commitf0fd8edb1fc36fd3dbe3b7df61da91b3daf9d4c6 (patch)
tree038c3f5f1e2fcfccb00ad426fde35cb157eac1dd /src/xtra2.c
parent9e69576b7ebbda9bde3900b36fb081f819dc828a (diff)
Remove auto_notes and take_notes options
We always set them to TRUE now.
Diffstat (limited to 'src/xtra2.c')
-rw-r--r--src/xtra2.c10
1 files changed, 3 insertions, 7 deletions
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];