mirror of
https://github.com/Crazy-Crew/CrazyAuctions.git
synced 2024-11-10 10:10:22 +01:00
add todo()'s
This commit is contained in:
parent
c9c9cf2880
commit
25420ffbb6
@ -120,6 +120,8 @@ public abstract class DynamicInventoryBuilder extends InventoryBuilder {
|
||||
public void setBiddingItem() {
|
||||
this.auctions.getProperty(AuctionKeys.bidding_item_button).setItem(event -> {
|
||||
setSellingItem();
|
||||
|
||||
//todo() open selling gui
|
||||
}, this.gui);
|
||||
}
|
||||
|
||||
@ -129,6 +131,8 @@ public abstract class DynamicInventoryBuilder extends InventoryBuilder {
|
||||
public void setSellingItem() {
|
||||
this.auctions.getProperty(AuctionKeys.selling_item_button).setItem(event -> {
|
||||
setBiddingItem();
|
||||
|
||||
//todo() open bidding gui
|
||||
}, this.gui);
|
||||
}
|
||||
}
|
@ -39,13 +39,14 @@ public class AuctionMenu extends DynamicInventoryBuilder {
|
||||
});
|
||||
|
||||
this.auctions.getProperty(AuctionKeys.expired_item_button).setItem(event -> {
|
||||
//todo() open expired gui
|
||||
}, this.gui);
|
||||
|
||||
// add selling item
|
||||
setSellingItem();
|
||||
|
||||
this.auctions.getProperty(AuctionKeys.sold_item_button).setItem(event -> {
|
||||
|
||||
//todo() open sold gui
|
||||
}, this.gui);
|
||||
|
||||
this.gui.open(this.player);
|
||||
|
Loading…
Reference in New Issue
Block a user