Whitespace

This commit is contained in:
Thoronium
2023-01-29 18:50:00 -07:00
parent da6314116b
commit 7c6138c423
2 changed files with 3 additions and 4 deletions

View File

@@ -15,6 +15,5 @@ public class HandlerHomeModuleSeenReq extends PacketHandler {
var seen = req.getSeenModuleIdListList();
// TODO: Make 'seen' status persist
session.send(new PacketHomeModuleSeenRsp(seen));
}
}

View File

@@ -7,14 +7,14 @@ import emu.grasscutter.net.packet.PacketOpcodes;
import emu.grasscutter.net.proto.HomeModuleSeenRspOuterClass.HomeModuleSeenRsp;
public class PacketHomeModuleSeenRsp extends BasePacket {
public PacketHomeModuleSeenRsp(List<Integer> seen) {
super(PacketOpcodes.HomeModuleSeenRsp);
HomeModuleSeenRsp proto = HomeModuleSeenRsp.newBuilder()
.addAllSeenModuleIdList(seen)
.build();
this.setData(proto);
}
}