forked from kyonshi/grenzland-mud
Fixed minor bug in do_stat_character when displaying players current quest information
This commit is contained in:
@@ -835,7 +835,7 @@ static void do_stat_character(struct char_data *ch, struct char_data *k)
|
||||
|
||||
send_to_char(ch, "Quest Points: [%9d] Quests Completed: [%5d]\r\n",
|
||||
GET_QUESTPOINTS(k), GET_NUM_QUESTS(k));
|
||||
if (GET_QUEST(ch) != NOTHING)
|
||||
if (GET_QUEST(k) != NOTHING)
|
||||
send_to_char(ch, "Current Quest: [%5d] Time Left: [%5d]\r\n",
|
||||
GET_QUEST(k), GET_QUEST_TIME(k));
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user