reworked some arguments
This commit is contained in:
@ -38,12 +38,10 @@ feature proc_args(int argc, char **argv,
|
||||
result |= FEATURE_NCURSES;
|
||||
} else if (str == "-r") {
|
||||
result |= FEATURE_RAND_MAP;
|
||||
} else if (str == "-m") {
|
||||
result |= FEATURE_MENU;
|
||||
} else if (str == "-c") {
|
||||
result |= FEATURE_ENEMIES_CHASE;
|
||||
} else if (str == "-C") {
|
||||
result |= FEATURE_COLORFUL;
|
||||
} else if (str == "-d") {
|
||||
result |= FEATURE_DOORS;
|
||||
} else if (str == "-i") {
|
||||
result |= FEATURE_INVENTORY;
|
||||
} else if (str == "-t") {
|
||||
@ -167,8 +165,8 @@ void panic_args(feature panic) {
|
||||
void print_args_list() {
|
||||
static const char *ARGS_LIST = "-n : Use ncurses for I/O\n\
|
||||
-r : Randomly generate maps\n\
|
||||
-m : Enabled a main menu + options\n\
|
||||
-c : Enemies chase the player (CAUTION: THEY CAN REALLY CHASE!!!)\n\
|
||||
-d : Enemies can go through doors (CAUTION: DO NOT ENABLE WITH CHASING!)\n\
|
||||
-i : Enable inventory (player can pick up potions)\n\
|
||||
-t : Enable throw\n\
|
||||
-R : Enable revisiting levels\n\
|
||||
|
Reference in New Issue
Block a user