Unlock hidden points (#2016)

This commit is contained in:
ghjbvvgh
2023-01-11 07:28:00 +08:00
committed by GitHub
Unverified
parent 668461a6f1
commit 8a5a6ab83e
2 changed files with 6 additions and 2 deletions
@@ -10,7 +10,8 @@ public class PacketScenePointUnlockNotify extends BasePacket {
ScenePointUnlockNotify.Builder p = ScenePointUnlockNotify.newBuilder()
.setSceneId(sceneId)
.addPointList(pointId);
.addPointList(pointId)
.addUnhidePointList(pointId);
this.setData(p);
}
@@ -20,7 +21,8 @@ public class PacketScenePointUnlockNotify extends BasePacket {
ScenePointUnlockNotify.Builder p = ScenePointUnlockNotify.newBuilder()
.setSceneId(sceneId)
.addAllPointList(pointIds);
.addAllPointList(pointIds)
.addAllUnhidePointList(pointIds);
this.setData(p);
}