mirror of
https://github.com/Grasscutters/Grasscutter.git
synced 2026-05-15 15:12:33 +08:00
Fix whitespace [skip actions]
This commit is contained in:
+14
-14
@@ -5,23 +5,23 @@ import emu.grasscutter.net.packet.PacketOpcodes;
|
||||
import emu.grasscutter.net.proto.ScenePointUnlockNotifyOuterClass.ScenePointUnlockNotify;
|
||||
|
||||
public class PacketScenePointUnlockNotify extends BasePacket {
|
||||
public PacketScenePointUnlockNotify(int sceneId, int pointId) {
|
||||
super(PacketOpcodes.ScenePointUnlockNotify);
|
||||
public PacketScenePointUnlockNotify(int sceneId, int pointId) {
|
||||
super(PacketOpcodes.ScenePointUnlockNotify);
|
||||
|
||||
ScenePointUnlockNotify.Builder p = ScenePointUnlockNotify.newBuilder()
|
||||
.setSceneId(sceneId)
|
||||
.addPointList(pointId);
|
||||
ScenePointUnlockNotify.Builder p = ScenePointUnlockNotify.newBuilder()
|
||||
.setSceneId(sceneId)
|
||||
.addPointList(pointId);
|
||||
|
||||
this.setData(p);
|
||||
}
|
||||
this.setData(p);
|
||||
}
|
||||
|
||||
public PacketScenePointUnlockNotify(int sceneId, Iterable<Integer> pointIds) {
|
||||
super(PacketOpcodes.ScenePointUnlockNotify);
|
||||
public PacketScenePointUnlockNotify(int sceneId, Iterable<Integer> pointIds) {
|
||||
super(PacketOpcodes.ScenePointUnlockNotify);
|
||||
|
||||
ScenePointUnlockNotify.Builder p = ScenePointUnlockNotify.newBuilder()
|
||||
.setSceneId(sceneId)
|
||||
.addAllPointList(pointIds);
|
||||
ScenePointUnlockNotify.Builder p = ScenePointUnlockNotify.newBuilder()
|
||||
.setSceneId(sceneId)
|
||||
.addAllPointList(pointIds);
|
||||
|
||||
this.setData(p);
|
||||
}
|
||||
this.setData(p);
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user