diff --git a/README.md b/README.md index 69e1118..bc81ff2 100644 --- a/README.md +++ b/README.md @@ -81,6 +81,7 @@ Features to be implemented in the next few releases: * New elemental classes * Introduction of gathering mana/magic for sorceror class * Highly modified magic system +* Ranged weapons and ammo * Components for some magical spells * Reading/writing limited to specific castes of society * Haggling and bartering system diff --git a/src/act.informative.c b/src/act.informative.c index 957ff6b..b972054 100644 --- a/src/act.informative.c +++ b/src/act.informative.c @@ -900,7 +900,6 @@ static void look_in_direction(struct char_data *ch, int dir) int distance; bool blocked = FALSE; - send_to_char(ch, ">look %s\r\n\r\n", dirs[dir]); send_to_char(ch, "You look to the %s and see:\r\n", dirs[dir]); for (distance = 0; distance < 3; distance++) { @@ -987,7 +986,10 @@ static bool look_list_direction_chars(struct char_data *ch, room_rnum room) } if (CAN_SEE(ch, tch)) { - send_to_char(ch, "%s\r\n", get_char_sdesc(tch)); + char ldesc[MAX_STRING_LENGTH]; + + build_current_ldesc(tch, ldesc, sizeof(ldesc)); + send_to_char(ch, "%s\r\n", ldesc); found = TRUE; } }