X-Git-Url: https://plomlompom.com/repos/feed.xml?a=blobdiff_plain;f=src%2Fserver%2Fworld.h;h=f895ff21a05674679f6d1781e3a5210a30331faa;hb=632b6d3e471fcdebbbf0d753a9ae3080b432e626;hp=35928096d12ea1fb86b3a169f41f3f927f34e3f5;hpb=85cd980ab5f84ea2d1979ea39af6d230b2788120;p=plomrogue diff --git a/src/server/world.h b/src/server/world.h index 3592809..f895ff2 100644 --- a/src/server/world.h +++ b/src/server/world.h @@ -1,4 +1,8 @@ /* src/server/world.h + * + * This file is part of PlomRogue. PlomRogue is licensed under the GPL version 3 + * or any later version. For details on its copyright, license, and warranties, + * see the file NOTICE in the root directory of the PlomRogue source package. * * Contains the World struct holding all game data together. */ @@ -31,7 +35,8 @@ 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. */ + uint8_t do_update; /* Update worldstate file if !0. */ + uint8_t exists; /* If !0, remake_world() has been run successfully. */ uint8_t player_type; /* Thing type that player will start as. */ uint8_t is_verbose; /* Should server send debugging info to stdout? */ };