Enable 'dropped_nopick' by default
This commit is contained in:
+1
-1
@@ -17,7 +17,7 @@ cmdassist give help for errors on direction & other commands [True]
|
|||||||
color use different colors for objects on screen [True for micros]
|
color use different colors for objects on screen [True for micros]
|
||||||
confirm ask before hitting tame or peaceful monsters [True]
|
confirm ask before hitting tame or peaceful monsters [True]
|
||||||
dark_room show floor not in sight in different color [True]
|
dark_room show floor not in sight in different color [True]
|
||||||
dropped_nopick exclude dropped objects from autopickup [False]
|
dropped_nopick exclude dropped objects from autopickup [True]
|
||||||
eight_bit_tty send 8-bit characters straight to terminal [False]
|
eight_bit_tty send 8-bit characters straight to terminal [False]
|
||||||
extmenu tty, curses: use menu for # (extended commands) [False]
|
extmenu tty, curses: use menu for # (extended commands) [False]
|
||||||
X11: menu has all commands (T) or traditional subset (F)
|
X11: menu has all commands (T) or traditional subset (F)
|
||||||
|
|||||||
+1
-1
@@ -3874,7 +3874,7 @@ picked up, even if
|
|||||||
.op autopickup
|
.op autopickup
|
||||||
is also on and they are in
|
is also on and they are in
|
||||||
.op pickup_types
|
.op pickup_types
|
||||||
or match a positive autopickup exception (defualt off). Persistent.
|
or match a positive autopickup exception (defualt on). Persistent.
|
||||||
.lp disclose
|
.lp disclose
|
||||||
Controls what information the program reveals when the game ends.
|
Controls what information the program reveals when the game ends.
|
||||||
Value is a space separated list of prompting/category pairs
|
Value is a space separated list of prompting/category pairs
|
||||||
|
|||||||
+1
-1
@@ -4228,7 +4228,7 @@ Start the character permanently deaf (default false). Persistent.
|
|||||||
If this option is on, items you dropped will not be automatically picked up,
|
If this option is on, items you dropped will not be automatically picked up,
|
||||||
even if ``{\it autopickup\/}'' is also on and they are in
|
even if ``{\it autopickup\/}'' is also on and they are in
|
||||||
``{\it pickup\verb+_+types\/}'' or match a positive autopickup exception
|
``{\it pickup\verb+_+types\/}'' or match a positive autopickup exception
|
||||||
(default off). Persistent.
|
(default on). Persistent.
|
||||||
%.lp
|
%.lp
|
||||||
\item[\ib{disclose}]
|
\item[\ib{disclose}]
|
||||||
Controls what information the program reveals when the game ends.
|
Controls what information the program reveals when the game ends.
|
||||||
|
|||||||
+2
-2
@@ -261,8 +261,8 @@ static int optfn_##a(int, int, boolean, char *, char *);
|
|||||||
NHOPTC(dogname, Advanced, PL_PSIZ, opt_in, set_gameview,
|
NHOPTC(dogname, Advanced, PL_PSIZ, opt_in, set_gameview,
|
||||||
No, Yes, No, No, NoAlias,
|
No, Yes, No, No, NoAlias,
|
||||||
"name of your starting pet if it is a little dog")
|
"name of your starting pet if it is a little dog")
|
||||||
NHOPTB(dropped_nopick, Behavior, 0, opt_in, set_in_game,
|
NHOPTB(dropped_nopick, Behavior, 0, opt_out, set_in_game,
|
||||||
Off, Yes, No, No, NoAlias, &flags.nopick_dropped, Term_False,
|
On, Yes, No, No, NoAlias, &flags.nopick_dropped, Term_False,
|
||||||
"don't autopickup dropped items")
|
"don't autopickup dropped items")
|
||||||
NHOPTC(dungeon, Advanced, MAXDCHARS + 1,opt_in, set_in_config,
|
NHOPTC(dungeon, Advanced, MAXDCHARS + 1,opt_in, set_in_config,
|
||||||
No, Yes, No, No, NoAlias,
|
No, Yes, No, No, NoAlias,
|
||||||
|
|||||||
Reference in New Issue
Block a user