Skip to content

Commit

Permalink
Adventure - Arena quest tracking correction
Browse files Browse the repository at this point in the history
  • Loading branch information
jjayers99 committed Jan 14, 2024
1 parent f2b1da8 commit 0ebfc2c
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -292,8 +292,8 @@ public AdventureQuestController.QuestStatus handleEvent(AdventureQuestEvent even
status = ++progress2 >= count2 ? FAILED : status;
}
case Arena:
status = event.type == AdventureQuestEventType.EVENTCOMPLETE
&& event.clear //if event not conceded
status = event.type == AdventureQuestEventType.ARENACOMPLETE
&& event.winner //if event won & not conceded
&& ++progress1 >= count1 ? COMPLETE : status;
break;
case EventWin:
Expand Down

0 comments on commit 0ebfc2c

Please sign in to comment.