summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBardur Arantsson <bardur@scientician.net>2013-06-24 08:50:34 +0200
committerBardur Arantsson <bardur@scientician.net>2013-06-29 05:37:49 +0200
commit7d05ca4fd4562421f16d07dc6f13a23355953f11 (patch)
tree43e3c35de75718e4b2a738a6ac5d3eeabecac29d
parent6d3f6acd7498db5b9958d51002986ee957dbe11b (diff)
Remove fast_autoroller option
It wasn't implemented anyway.
-rw-r--r--lib/help/option.txt6
-rw-r--r--lib/mods/theme/help/option.txt6
-rw-r--r--src/externs.h1
-rw-r--r--src/tables.c3
-rw-r--r--src/variable.c5
5 files changed, 0 insertions, 21 deletions
diff --git a/lib/help/option.txt b/lib/help/option.txt
index 7505f46b..ccb2896f 100644
--- a/lib/help/option.txt
+++ b/lib/help/option.txt
@@ -64,12 +64,6 @@ can also be viewed from the option menu while playing, but not changed then.
Used in conjunction with the take_notes option, this option makes a note
each time you gain a level, kill a unique, find an artifact, etc.
-#####GFast autoroller (NOT on multiuser systems) [fast_autoroller]
- The normal autoroller has a built-in delay that helps prevent it from
- overloading a system. This option reduces that delay, allowing characters
- to be rolled in a much shorter time, but should not be used on multiuser
- systems.
-
#####GAllow use of some 'joke' monsters [joke_monsters]
Allows monsters flagged as being some of DarkGod's jokes to be generated.
diff --git a/lib/mods/theme/help/option.txt b/lib/mods/theme/help/option.txt
index 93b34cd8..e4ee32f9 100644
--- a/lib/mods/theme/help/option.txt
+++ b/lib/mods/theme/help/option.txt
@@ -64,12 +64,6 @@ can also be viewed from the option menu while playing, but not changed then.
Used in conjunction with the take_notes option, this option makes a note
each time you gain a level, kill a unique, find an artifact, etc.
-#####GFast autoroller (NOT on multiuser systems) [fast_autoroller]
- The normal autoroller has a built-in delay that helps prevent it from
- overloading a system. This option reduces that delay, allowing characters
- to be rolled in a much shorter time, but should not be used on multiuser
- systems.
-
#####GAllow use of some 'joke' monsters [joke_monsters]
Allows monsters flagged as being some of DarkGod's jokes to be generated.
diff --git a/src/externs.h b/src/externs.h
index fbdbf916..fc930559 100644
--- a/src/externs.h
+++ b/src/externs.h
@@ -523,7 +523,6 @@ extern bool_ *m_allow_special;
extern bool_ *k_allow_special;
extern bool_ *a_allow_special;
extern bool_ rand_birth;
-extern bool_ fast_autoroller;
extern bool_ joke_monsters;
extern bool_ center_player;
extern s16b plots[MAX_PLOTS];
diff --git a/src/tables.c b/src/tables.c
index f2478eef..a66557cc 100644
--- a/src/tables.c
+++ b/src/tables.c
@@ -1619,9 +1619,6 @@ option_type option_info[] =
{ &auto_notes, TRUE, 6, 8,
"auto_notes", "Automatically note important events" },
- { &fast_autoroller, FALSE, 6, 10,
- "fast_autoroller", "Fast autoroller(NOT on multiuser systems)" },
-
{ &joke_monsters, FALSE, 6, 14,
"joke_monsters", "Allow use of some 'joke' monsters" },
diff --git a/src/variable.c b/src/variable.c
index 41d6a9a9..2510f6dd 100644
--- a/src/variable.c
+++ b/src/variable.c
@@ -1296,11 +1296,6 @@ bool_ *a_allow_special;
bool_ rand_birth;
/*
- * Fast autoroller
- */
-bool_ fast_autoroller;
-
-/*
* Which monsters are allowed ?
*/
bool_ joke_monsters;