Skip to content

Commit

Permalink
Merge pull request #205 from AzureAaron/dark-auction-tabhud
Browse files Browse the repository at this point in the history
Add Dark Auction Tab Hud
  • Loading branch information
Aaron committed Jul 23, 2023
2 parents 14ec65e + 1aa0061 commit 7e33632
Showing 1 changed file with 3 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@ public static enum Location {
GARDEN,
INSTANCED,
THE_RIFT,
DARK_AUCTION,
UNKNOWN
}

Expand Down Expand Up @@ -85,6 +86,8 @@ public static Location getPlayerLocation() {
return Location.INSTANCED;
case "The Rift":
return Location.THE_RIFT;
case "Dark Auction":
return Location.DARK_AUCTION;
default:
return Location.UNKNOWN;
}
Expand Down

0 comments on commit 7e33632

Please sign in to comment.