Skip to content

Commit

Permalink
Amend 668c1c3
Browse files Browse the repository at this point in the history
  • Loading branch information
bm01 committed Aug 2, 2024
1 parent 668c1c3 commit b8dc6bf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion GameServer/packets/Server/PacketLib168.cs
Original file line number Diff line number Diff line change
Expand Up @@ -1610,7 +1610,7 @@ public virtual void SendQuestUpdate(AbstractQuest quest)

public virtual void SendQuestRemove(byte index)
{
if (m_gameClient.Player.QuestList.Count > MAX_PACKET_LENGTH)
if (m_gameClient.Player.QuestList.Count > JOURNAL_MAX_QUEST_COUNT)
SendQuestListUpdate();
else
SendQuestPacket(null, index);
Expand Down

0 comments on commit b8dc6bf

Please sign in to comment.