Fix cataclysm survivor hard modes

This commit is contained in:
Melledy
2025-11-18 03:44:16 -08:00
parent 05555c684e
commit 4457b43a26

View File

@@ -0,0 +1,17 @@
package emu.nebula.server.handlers;
import emu.nebula.net.NetHandler;
import emu.nebula.net.NetMsgId;
import emu.nebula.net.HandlerId;
import emu.nebula.net.GameSession;
@HandlerId(NetMsgId.vampire_survivor_area_change_req)
public class HandlerVampireSurvivorAreaChangeReq extends NetHandler {
@Override
public byte[] handle(GameSession session, byte[] message) throws Exception {
// Encode and send
return session.encodeMsg(NetMsgId.vampire_survivor_area_change_succeed_ack);
}
}