X-Git-Url: https://plomlompom.com/repos/berlin_corona.txt?a=blobdiff_plain;f=src%2Fclient%2Fio.c;fp=src%2Fclient%2Fio.c;h=a46f91ff65c9cd00876cd392454ae2e922c1e1a4;hb=e45e336049b205cdf51d64e610cd75974e5f1f7b;hp=995ffb56578ff02c3a61c2ab392f47d354ada16b;hpb=dabae638d8facb5b6f3923b42a894d40a090b3fe;p=plomrogue diff --git a/src/client/io.c b/src/client/io.c index 995ffb5..a46f91f 100644 --- a/src/client/io.c +++ b/src/client/io.c @@ -275,6 +275,10 @@ static uint8_t read_queue() else if (!strcmp(msg, "THINGS_BELOW_PLAYER END")) { things_below_player_parsing = 0; + if (!world.things_below_player) + { + nl_append_string("(nothing)", &world.things_below_player); + } } else if (things_below_player_parsing) { @@ -294,6 +298,8 @@ static uint8_t read_queue() } else if (!strcmp(msg, "WORLD_UPDATED")) { + free(world.things_below_player); + world.things_below_player = NULL; send("STACK"); } free(msg);