mirror of
https://github.com/Grasscutters/Grasscutter.git
synced 2026-05-16 19:23:14 +08:00
Unlock hidden points (#2016)
This commit is contained in:
committed by
GitHub
Unverified
parent
668461a6f1
commit
8a5a6ab83e
@@ -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);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user