X-Git-Url: https://plomlompom.com/repos/?a=blobdiff_plain;f=src%2Fclient%2Fmain.c;h=acb592bff8482c9215c1b3a29593b22c7da5fe0a;hb=258e57c1621533e206610453047d829cc8aa13fe;hp=d08ac7df59860a202c4d7cac97773c61351f6103;hpb=e34629517265170e7bb3f446b9b067bab382b572;p=plomrogue diff --git a/src/client/main.c b/src/client/main.c index d08ac7d..acb592b 100644 --- a/src/client/main.c +++ b/src/client/main.c @@ -33,7 +33,7 @@ int main(int argc, char * argv[]) /* Declare hard-coded paths and values here. */ world.path_commands = "confclient/commands"; world.path_interface = "confclient/interface_conf"; - world.winDB.legal_ids = "012cilm"; + world.winDB.legal_ids = "012cilms"; char * path_server_in = "server/in"; char * path_server_out = "server/out"; @@ -56,7 +56,7 @@ int main(int argc, char * argv[]) keypad(world.winDB.t_screen, TRUE); init_command_db(); /* The command DB needs to be initialized before */ load_interface_conf(); /* the interface, whose keybindings depend on it. */ - world.focus_each_turn = 1; + world.autofocus = 1; /* Set handler for terminal window resizing. */ struct sigaction act;