Skip to content

Commit

Permalink
Fix infinite loading when selecting supports
Browse files Browse the repository at this point in the history
  • Loading branch information
Melledy committed Apr 16, 2024
1 parent 37f297a commit 2dc22b8
Showing 1 changed file with 16 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
package emu.lunarcore.server.packet.recv;

import emu.lunarcore.server.game.GameSession;
import emu.lunarcore.server.packet.CmdId;
import emu.lunarcore.server.packet.Opcodes;
import emu.lunarcore.server.packet.PacketHandler;

@Opcodes(CmdId.GetFriendAssistListCsReq)
public class HandlerGetFriendAssistListCsReq extends PacketHandler {

@Override
public void handle(GameSession session, byte[] data) throws Exception {
session.send(CmdId.GetFriendAssistListScRsp);
}

}

0 comments on commit 2dc22b8

Please sign in to comment.