Skip to content

Commit

Permalink
Amend previous commit
Browse files Browse the repository at this point in the history
Duh.
  • Loading branch information
bm01 committed Aug 2, 2024
1 parent 69bc724 commit bfbccf0
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 @@ -1613,7 +1613,7 @@ public virtual void SendQuestUpdate(AbstractQuest quest, byte indexOffset)
if (index + indexOffset >= JOURNAL_MAX_QUEST_COUNT + indexOffset)
return;

SendQuestPacket(quest, index);
SendQuestPacket(quest, (byte) (index + indexOffset));
}

public virtual void SendQuestRemove(byte index)
Expand Down

0 comments on commit bfbccf0

Please sign in to comment.