summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/externs.h1
-rw-r--r--src/tables.cc3
-rw-r--r--src/variable.cc2
-rw-r--r--src/xtra1.cc2
4 files changed, 1 insertions, 7 deletions
diff --git a/src/externs.h b/src/externs.h
index e55ddcd3..700da729 100644
--- a/src/externs.h
+++ b/src/externs.h
@@ -208,7 +208,6 @@ extern bool_ confirm_stairs;
extern bool_ disturb_pets;
extern bool_ view_perma_grids;
extern bool_ view_torch_grids;
-extern bool_ monster_lite;
extern bool_ flow_by_sound;
extern bool_ view_reduce_lite;
extern bool_ auto_scum;
diff --git a/src/tables.cc b/src/tables.cc
index 9d449310..2228f813 100644
--- a/src/tables.cc
+++ b/src/tables.cc
@@ -1463,9 +1463,6 @@ option_type option_info[] =
{ &view_torch_grids, FALSE, 3, 7,
"view_torch_grids", "Map remembers all torch-lit grids" },
- { &monster_lite, TRUE, 3, 19,
- "monster_lite", "Allow some monsters to carry light" },
-
{ &dungeon_align, TRUE, 3, 8,
"dungeon_align", "Generate dungeons with aligned rooms" },
diff --git a/src/variable.cc b/src/variable.cc
index 7172158d..ab941525 100644
--- a/src/variable.cc
+++ b/src/variable.cc
@@ -215,8 +215,6 @@ bool_ expand_list; /* Expand the power of the list commands */
bool_ view_perma_grids; /* Map remembers all perma-lit grids */
bool_ view_torch_grids; /* Map remembers all torch-lit grids */
-bool_ monster_lite; /* Allow some monsters to carry light */
-
bool_ dungeon_align; /* Generate dungeons with aligned rooms */
bool_ dungeon_stair; /* Generate dungeons with connected stairs */
diff --git a/src/xtra1.cc b/src/xtra1.cc
index 6ab0de8b..10e35c67 100644
--- a/src/xtra1.cc
+++ b/src/xtra1.cc
@@ -4188,7 +4188,7 @@ void update_stuff(void)
if (p_ptr->update & (PU_MON_LITE))
{
p_ptr->update &= ~(PU_MON_LITE);
- if (monster_lite) update_mon_lite();
+ update_mon_lite();
}
}