Fix player fields not being set

line seps r weird
This commit is contained in:
KingRainbow44
2023-04-10 22:46:19 -04:00
Unverified
parent 5e56b5e3a8
commit 06cbae31fa
453 changed files with 63228 additions and 63071 deletions
@@ -1,16 +1,16 @@
package emu.grasscutter.server.packet.send;
import emu.grasscutter.net.packet.BasePacket;
import emu.grasscutter.net.packet.PacketOpcodes;
import emu.grasscutter.net.proto.ShowClientGuideNotifyOuterClass.ShowClientGuideNotify;
public class PacketShowClientGuideNotify extends BasePacket {
public PacketShowClientGuideNotify(String guideName) {
super(PacketOpcodes.ShowClientGuideNotify, true);
ShowClientGuideNotify proto =
ShowClientGuideNotify.newBuilder().setGuideName(guideName).build();
this.setData(proto);
}
}
package emu.grasscutter.server.packet.send;
import emu.grasscutter.net.packet.BasePacket;
import emu.grasscutter.net.packet.PacketOpcodes;
import emu.grasscutter.net.proto.ShowClientGuideNotifyOuterClass.ShowClientGuideNotify;
public class PacketShowClientGuideNotify extends BasePacket {
public PacketShowClientGuideNotify(String guideName) {
super(PacketOpcodes.ShowClientGuideNotify, true);
ShowClientGuideNotify proto =
ShowClientGuideNotify.newBuilder().setGuideName(guideName).build();
this.setData(proto);
}
}