mirror of
https://github.com/Grasscutters/Grasscutter.git
synced 2026-05-27 22:20:59 +08:00
[BREAKING CHANGE] proto auto compiled by gradle (#226)
* [BREAK] proto auto compiled by gradle * [BREAK] move proto to submodule * update gitmodules * [BREAK] move proto to submodule * move proto to submodule * fix merge conflict * fix github action after merging * fix merge conflicts and del submodule * upload the proto
This commit is contained in:
committed by
GitHub
Unverified
parent
627a2f1ee8
commit
addfb5eb5d
@@ -2,6 +2,7 @@ package emu.grasscutter.server.packet.send;
|
||||
|
||||
import emu.grasscutter.net.packet.GenshinPacket;
|
||||
import emu.grasscutter.net.packet.PacketOpcodes;
|
||||
import emu.grasscutter.net.proto.RetcodeOuterClass;
|
||||
import emu.grasscutter.net.proto.SceneKickPlayerRspOuterClass.SceneKickPlayerRsp;
|
||||
|
||||
public class PacketSceneKickPlayerRsp extends GenshinPacket {
|
||||
@@ -20,7 +21,7 @@ public class PacketSceneKickPlayerRsp extends GenshinPacket {
|
||||
super(PacketOpcodes.SceneKickPlayerRsp);
|
||||
|
||||
SceneKickPlayerRsp proto = SceneKickPlayerRsp.newBuilder()
|
||||
.setRetcode(1)
|
||||
.setRetcode(RetcodeOuterClass.Retcode.RET_SVR_ERROR_VALUE)
|
||||
.build();
|
||||
|
||||
this.setData(proto);
|
||||
|
||||
Reference in New Issue
Block a user