🔨 add current gui to expired items constructor

Took 6 minutes

Took 41 seconds
This commit is contained in:
Kiran Hart 2024-05-29 14:07:48 -04:00
parent c7c353658e
commit 843aee1837
No known key found for this signature in database
GPG Key ID: 5F36C7BC79D3EBC3

View File

@ -542,7 +542,7 @@ public class GUIAuctionHouse extends AbstractPlaceholderGui {
put("%expired_player_auctions%", auctionPlayer.getItems(true).size()); put("%expired_player_auctions%", auctionPlayer.getItems(true).size());
}}), e -> { }}), e -> {
cleanup(); cleanup();
e.manager.showGUI(e.player, new GUIExpiredItems(this.auctionPlayer)); e.manager.showGUI(e.player, new GUIExpiredItems(this, this.auctionPlayer));
}); });
} }