diff --git a/data/lib/core/player.lua b/data/lib/core/player.lua index f6b12ca1ba..ba10b3de18 100644 --- a/data/lib/core/player.lua +++ b/data/lib/core/player.lua @@ -417,7 +417,7 @@ function Player.sendQuestLog(self) for _, quest in pairs(quests) do msg:addU16(quest.id) msg:addString(quest.name) - msg:addByte(quest:isCompleted(self)) + msg:addByte(quest:isCompleted(self) and 0x01 or 0x00) end msg:sendToPlayer(self)