Skip to content

Commit

Permalink
Merge pull request #4515 from jjayers99/master
Browse files Browse the repository at this point in the history
Adventure - Arena quest tracking correction
  • Loading branch information
jjayers99 authored Jan 14, 2024
2 parents f2b1da8 + 0ebfc2c commit b610036
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 b610036

Please sign in to comment.