home · contact · privacy
Server: Read in former "config" data as normal server god commands.
[plomrogue] / src / server / main.c
index 33e539102beded5802016eadea339ea40f2cc77e..c8ca499293999f32067b2c5a0afcc54dc34c8526 100644 (file)
@@ -4,7 +4,6 @@
 #include <stdlib.h> /* exit() */
 #include "../common/rexit.h" /* exit_err, set_cleanup_func() */
 #include "cleanup.h" /* set_cleanup_flag(), cleanup() */
-#include "configfile.h" /* read_config_file() */
 #include "hardcoded_strings.h" /* s */
 #include "init.h" /* run_game(), obey_argv(), obey_argv(), setup_server_io() */
 #include "world.h" /* struct World */
@@ -31,16 +30,14 @@ int main(int argc, char ** argv)
         if (world.replay)
         {
             test = printf("Replay mode. Auto-replaying up to turn %d.\n",
-                         world.replay);
+                          world.replay);
             exit_err(-1 == test, printf_err);
         }
     }
+    world.map.length = 64;                      /* Just a sane default value. */
 
-    /* Init config file and server i/o files. */
-    read_config_file();
+    /* Init server i/o, Enter play or replay mode loops, then leave properly. */
     setup_server_io();
-
-    /* Enter play or replay mode loops, then leave properly. */
     run_game();
     cleanup();
     exit(EXIT_SUCCESS);