X-Git-Url: https://plomlompom.com/repos/?a=blobdiff_plain;f=src%2Fserver%2Fworld.h;h=f6deb103370982693ffae738b54dbc26a0482f88;hb=78dce4062e2cc7ca4fb205917ab2b8b087e562f2;hp=f895ff21a05674679f6d1781e3a5210a30331faa;hpb=28b8b4234e395c3fdc4800e5cfb3dcd70a15cadf;p=plomrogue diff --git a/src/server/world.h b/src/server/world.h index f895ff2..f6deb10 100644 --- a/src/server/world.h +++ b/src/server/world.h @@ -27,10 +27,8 @@ struct World struct ThingType * thing_types; /* Thing type definitions. */ struct ThingAction * thing_actions; /* Thing action definitions. */ struct Thing * things; /* All physical things of the game world. */ - char * log; /* Logs the game events from the player's view. */ char * server_test; /* String uniquely identifying server process. */ char * queue; /* Stores un-processed messages read from the input file. */ - uint32_t queue_size;/* Length of .queue sequence of \0-terminated strings.*/ uint32_t seed; /* Randomness seed. */ uint32_t seed_map; /* Map seed. */ uint16_t replay; /* Turn up to which to replay game. No replay if zero. */