home · contact · privacy
Server/py: Some more mem map handling fixes …
[plomrogue] / src / client / main.c
index 4bf6461923bac4c8868de633198b6379f583f68f..c40d7451e2467fa1281a42da461e9575fbab5342 100644 (file)
@@ -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  = "012cilma";
+    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;