X-Git-Url: https://plomlompom.com/repos/?a=blobdiff_plain;f=src%2Fclient%2Fmain.c;h=c40d7451e2467fa1281a42da461e9575fbab5342;hb=aa2ca997b919bee3cea9dfaed27e33fb0bc81728;hp=7b2e0f9219f1c3b5f496922c61774ad561112c6b;hpb=28b8b4234e395c3fdc4800e5cfb3dcd70a15cadf;p=plomrogue diff --git a/src/client/main.c b/src/client/main.c index 7b2e0f9..c40d745 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 = "012ciklm"; + world.winDB.legal_ids = "012cilms"; char * path_server_in = "server/in"; char * path_server_out = "server/out"; @@ -56,7 +56,6 @@ 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; /* Set handler for terminal window resizing. */ struct sigaction act;