fixed small bug in toggle showvnum (#125)

Thanks, @prool
This commit is contained in:
Serge 2023-01-07 16:43:06 +02:00 committed by GitHub
parent 213e52d255
commit 498b652546
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -519,7 +519,7 @@ void look_at_room(struct char_data *ch, int ignore_brief)
send_to_char(ch, "]");
}
}
else {
else
send_to_char(ch, "%s", world[IN_ROOM(ch)].name);
send_to_char(ch, "%s\r\n", CCNRM(ch, C_NRM));
@ -538,7 +538,6 @@ void look_at_room(struct char_data *ch, int ignore_brief)
/*now list characters &objects */
list_obj_to_char(world[IN_ROOM(ch)].contents, ch, SHOW_OBJ_LONG, FALSE);
list_char_to_char(world[IN_ROOM(ch)].people, ch);
}
}
static void look_in_direction(struct char_data *ch, int dir)