mirror of
https://github.com/Grasscutters/Grasscutter.git
synced 2026-06-13 01:34:08 +08:00
Run IntelliJ IDEA code formatter
This commit is contained in:
@@ -11,14 +11,14 @@ import java.util.List;
|
||||
|
||||
public class PacketGroupSuiteNotify extends BasePacket {
|
||||
|
||||
/**
|
||||
* Real control which npc suite is loaded
|
||||
/**
|
||||
* Real control which npc suite is loaded
|
||||
* EntityNPC is useless
|
||||
*/
|
||||
public PacketGroupSuiteNotify(List<SceneNpcBornEntry> npcBornEntries) {
|
||||
super(PacketOpcodes.GroupSuiteNotify);
|
||||
*/
|
||||
public PacketGroupSuiteNotify(List<SceneNpcBornEntry> npcBornEntries) {
|
||||
super(PacketOpcodes.GroupSuiteNotify);
|
||||
|
||||
var proto = GroupSuiteNotifyOuterClass.GroupSuiteNotify.newBuilder();
|
||||
var proto = GroupSuiteNotifyOuterClass.GroupSuiteNotify.newBuilder();
|
||||
|
||||
npcBornEntries.stream()
|
||||
.filter(x -> x.getGroupId() > 0 && x.getSuiteIdList() != null)
|
||||
@@ -26,9 +26,9 @@ public class PacketGroupSuiteNotify extends BasePacket {
|
||||
proto.putGroupMap(x.getGroupId(), y)
|
||||
));
|
||||
|
||||
this.setData(proto);
|
||||
this.setData(proto);
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
public PacketGroupSuiteNotify(int groupId, int suiteId) {
|
||||
super(PacketOpcodes.GroupSuiteNotify);
|
||||
|
||||
Reference in New Issue
Block a user