X-Git-Url: https://plomlompom.com/repos/%7B%7B%20web_path%20%7D%7D/decks/%7B%7Bdeck_id%7D%7D/cards/%7B%7Bcard_id%7D%7D/form?a=blobdiff_plain;f=src%2Fclient%2Fio.c;h=df90c17f2be29be49451b35c866bcd44387b422c;hb=5987599c7531fb17ad174824335d99339200f306;hp=d9f888d65b0176562b09d0cc1487defba67d2d69;hpb=1acf96881e079649fae9504f7fe209c6c71005ca;p=plomrogue diff --git a/src/client/io.c b/src/client/io.c index d9f888d..df90c17 100644 --- a/src/client/io.c +++ b/src/client/io.c @@ -197,6 +197,7 @@ 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); // free(read_buf); try_fclose(file, __func__); return 1;