Fixed minor bug in do_stat_character when displaying players current quest information
This commit is contained in:
@@ -34,6 +34,8 @@ OLC copy and delete options.
|
|||||||
export (QQ's a zone into a tarball)t
|
export (QQ's a zone into a tarball)t
|
||||||
Xlist (mlist, olist, rlist, zlist, slist, tlist, qlist)
|
Xlist (mlist, olist, rlist, zlist, slist, tlist, qlist)
|
||||||
(lots of major bugfixes too)
|
(lots of major bugfixes too)
|
||||||
|
[Apr 12 2009] - Jamdog
|
||||||
|
Bug-Fix: Stat player displayed current quest information incorrectly - fixed 'if'
|
||||||
[Apr 11 2009] - Jamdog
|
[Apr 11 2009] - Jamdog
|
||||||
Bug-Fix: NPC check added to do_gen_ps function (thanks drefs)
|
Bug-Fix: NPC check added to do_gen_ps function (thanks drefs)
|
||||||
Bug-Fix: Fixed crash bug in remove_player where index entry is removed too early (thanks drefs)
|
Bug-Fix: Fixed crash bug in remove_player where index entry is removed too early (thanks drefs)
|
||||||
|
|||||||
@@ -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",
|
send_to_char(ch, "Quest Points: [%9d] Quests Completed: [%5d]\r\n",
|
||||||
GET_QUESTPOINTS(k), GET_NUM_QUESTS(k));
|
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",
|
send_to_char(ch, "Current Quest: [%5d] Time Left: [%5d]\r\n",
|
||||||
GET_QUEST(k), GET_QUEST_TIME(k));
|
GET_QUEST(k), GET_QUEST_TIME(k));
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user