home · contact · privacy
Replace uses of variable-length arrays with try_malloc()/free().
[plomrogue] / src / server / world.h
index 4318562ef437068cde27d908f35614420e8c0673..35928096d12ea1fb86b3a169f41f3f927f34e3f5 100644 (file)
@@ -34,7 +34,6 @@ struct World
     uint16_t last_update_turn; /* Last turn the .path_out file was updated. */
     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;