From 9af6630ea28ef48619fe24b49d7a32c3d571e9f5 Mon Sep 17 00:00:00 2001 From: Rumble Date: Sat, 8 Jun 2013 11:44:38 -0300 Subject: [PATCH] Fixed new players with improper quest setting. --- src/db.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/db.c b/src/db.c index 0a1f8dc..b5cbf9b 100644 --- a/src/db.c +++ b/src/db.c @@ -3458,7 +3458,7 @@ void init_char(struct char_data *ch) GET_NUM_QUESTS(ch) = 0; ch->player_specials->saved.completed_quests = NULL; - GET_QUEST(ch) = -1; + GET_QUEST(ch) = NOTHING; ch->player.time.birth = time(0); ch->player.time.logon = time(0);