Skip to content

Commit

Permalink
Missing return in EquipManager::HandleChangeEquipList.
Browse files Browse the repository at this point in the history
  • Loading branch information
RyanYappert committed Dec 6, 2024
1 parent 8eade15 commit b42d06a
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions Arrowgene.Ddon.GameServer/Characters/EquipManager.cs
Original file line number Diff line number Diff line change
Expand Up @@ -258,6 +258,8 @@ public PacketQueue HandleChangeEquipList(DdonGameServer server, GameClient clien

client.Enqueue(updateCharacterItemNtc, queue);
server.ClientLookup.EnqueueToAll(changePawnEquipNtc, queue);

return queue;
}

throw new ResponseErrorException(ErrorCode.ERROR_CODE_FAIL); //TODO: Find a better code.
Expand Down

0 comments on commit b42d06a

Please sign in to comment.