home · contact · privacy
7DRL: Extend EMPATHY display with actors' current actions.
[plomrogue] / src / client / io.c
index df90c17f2be29be49451b35c866bcd44387b422c..d7d145065d918f1fe6c6fb8826af8077700344a7 100644 (file)
@@ -197,7 +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.stacks_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;