Allow the player to finish dungeons

This commit is contained in:
Melledy
2022-04-29 00:49:05 -07:00
Unverified
parent 8ab2b446cd
commit 72e9a21ce3
6 changed files with 40 additions and 3 deletions
@@ -11,8 +11,10 @@ public class PacketDungeonChallengeFinishNotify extends BasePacket {
super(PacketOpcodes.DungeonChallengeFinishNotify);
DungeonChallengeFinishNotify proto = DungeonChallengeFinishNotify.newBuilder()
.setChallengeIndex(challenge.getChallengeId())
.setChallengeIndex(challenge.getChallengeIndex())
.setIsSuccess(challenge.isSuccess())
.setUnk1(challenge.getChallengeId())
.setUnk2(30)
.build();
this.setData(proto);