Skip to content

Commit

Permalink
Fix some area maps being locked
Browse files Browse the repository at this point in the history
  • Loading branch information
Melledy committed Aug 4, 2024
1 parent 99f6a84 commit 309397c
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.GetMissionDataCsReq)
public class HandlerGetMissionDataCsReq extends PacketHandler {

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

}

0 comments on commit 309397c

Please sign in to comment.