Skip to content

Commit

Permalink
feat: Add refresh action to MarketGui
Browse files Browse the repository at this point in the history
  • Loading branch information
blank038 committed Dec 18, 2023
1 parent 68a3095 commit 9fb4d9e
Showing 1 changed file with 3 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -154,6 +154,9 @@ public void openGui(Player player) {
case "store":
new StoreContainerGui(clicker, lastPage, this.sourceMarketKey, this.filter).open(1);
break;
case "refresh":
new MarketGui(this.sourceMarketKey, this.currentPage, this.filter).openGui(clicker);
break;
default:
if (action.contains(":")) {
String[] split = action.split(":");
Expand Down

0 comments on commit 9fb4d9e

Please sign in to comment.