2022-04-17 12:43:07 +00:00
|
|
|
package emu.grasscutter.server.packet.send;
|
|
|
|
|
2022-04-27 04:21:57 +00:00
|
|
|
import emu.grasscutter.net.packet.BasePacket;
|
2022-04-17 12:43:07 +00:00
|
|
|
import emu.grasscutter.net.packet.PacketOpcodes;
|
|
|
|
import emu.grasscutter.net.proto.GetAuthkeyRspOuterClass.GetAuthkeyRsp;
|
2022-04-26 21:44:30 +00:00
|
|
|
import emu.grasscutter.net.proto.RetcodeOuterClass;
|
2022-04-17 12:43:07 +00:00
|
|
|
|
2022-04-27 04:21:57 +00:00
|
|
|
public class PacketGetAuthkeyRsp extends BasePacket {
|
2022-04-17 12:43:07 +00:00
|
|
|
|
|
|
|
public PacketGetAuthkeyRsp() {
|
|
|
|
super(PacketOpcodes.GetAuthkeyRsp);
|
|
|
|
|
2022-04-26 21:44:30 +00:00
|
|
|
GetAuthkeyRsp proto = GetAuthkeyRsp.newBuilder().setRetcode(RetcodeOuterClass.Retcode.RET_SVR_ERROR_VALUE).build();
|
2022-04-17 12:43:07 +00:00
|
|
|
|
|
|
|
this.setData(proto);
|
|
|
|
}
|
|
|
|
}
|