home · contact · privacy
Add to TODO.
[plomrogue] / src / server / world.h
index 4318562ef437068cde27d908f35614420e8c0673..22af12c618a48288ebcaba517cec6ab132ea09e4 100644 (file)
@@ -31,10 +31,9 @@ struct World
     uint32_t seed_map; /* Map seed. */
     uint16_t replay; /* Turn up to which to replay game. No replay if zero. */
     uint16_t turn; /* Current game turn. */
-    uint16_t last_update_turn; /* Last turn the .path_out file was updated. */
+    uint16_t do_update; /* Update worldstate file if !0. */
     uint8_t player_type; /* Thing type that player will start as. */
     uint8_t is_verbose; /* Should server send debugging info to stdout? */
-    uint8_t enemy_fov; /* != 0 if non-player actors only see field of view. */
 };
 
 extern struct World world;