X-Git-Url: https://plomlompom.com/repos/?a=blobdiff_plain;ds=sidebyside;f=src%2Fserver%2Fworld.h;h=6e941e60cbbe199284decf3dd54134957bf33b36;hb=891ba8fbca53d920f6b3704827fa6b8aee737de4;hp=22af12c618a48288ebcaba517cec6ab132ea09e4;hpb=997edd45d2002dc021d1d74a12473e6055a82a75;p=plomrogue diff --git a/src/server/world.h b/src/server/world.h index 22af12c..6e941e6 100644 --- a/src/server/world.h +++ b/src/server/world.h @@ -31,7 +31,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 do_update; /* Update worldstate file if !0. */ + 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? */ };