home · contact · privacy
7DRL: Extend EMPATHY display with actors' current actions.
[plomrogue] / src / client / io.c
index bdebef2440cbfee3c0eff685211ed16def36f916..d7d145065d918f1fe6c6fb8826af8077700344a7 100644 (file)
@@ -197,6 +197,8 @@ static uint8_t read_worldstate()
     world.map.length = (uint16_t) read_value_from_line(read_buf, linemax, file);
     read_map_cells(file, &world.map.cells);
     read_map_cells(file, &world.mem_map);
+    read_map_cells(file, &world.meta_map_0);  //
+    read_map_cells(file, &world.meta_map_1);  //
     free(read_buf);
     try_fclose(file, __func__);
     return 1;
@@ -278,6 +280,7 @@ static uint8_t read_queue()
             {
                 nl_append_string("(none known)", &world.things_here);
             }
+            world.things_here_scroll = 0;  //
         }
         else if (things_here_parsing)
         {