mirror of
https://github.com/kiranhart/Auction-House.git
synced 2025-01-09 13:07:41 +01:00
fixed bug where when leaving/disconnecting from the server after placing an item into the sell gui and entering a new price, you'll not get it back on rejoin
Took 2 minutes
This commit is contained in:
parent
79bec096a2
commit
7b96ca12ee
@ -171,6 +171,8 @@ public class GUISellItem extends AbstractPlaceholderGui {
|
||||
reopen(e);
|
||||
});
|
||||
|
||||
builder.onPlayerDiconnect(() -> PlayerUtils.giveItem(e.player, this.itemToBeListed));
|
||||
|
||||
PlayerChatInput<Long> input = builder.build();
|
||||
input.start();
|
||||
});
|
||||
@ -201,6 +203,8 @@ public class GUISellItem extends AbstractPlaceholderGui {
|
||||
reopen(e);
|
||||
});
|
||||
|
||||
builder.onPlayerDiconnect(() -> PlayerUtils.giveItem(e.player, this.itemToBeListed));
|
||||
|
||||
PlayerChatInput<Double> input = builder.build();
|
||||
input.start();
|
||||
});
|
||||
@ -228,6 +232,8 @@ public class GUISellItem extends AbstractPlaceholderGui {
|
||||
reopen(e);
|
||||
});
|
||||
|
||||
builder.onPlayerDiconnect(() -> PlayerUtils.giveItem(e.player, this.itemToBeListed));
|
||||
|
||||
PlayerChatInput<Double> input = builder.build();
|
||||
input.start();
|
||||
});
|
||||
@ -254,6 +260,8 @@ public class GUISellItem extends AbstractPlaceholderGui {
|
||||
reopen(e);
|
||||
});
|
||||
|
||||
builder.onPlayerDiconnect(() -> PlayerUtils.giveItem(e.player, this.itemToBeListed));
|
||||
|
||||
PlayerChatInput<Double> input = builder.build();
|
||||
input.start();
|
||||
});
|
||||
|
Loading…
Reference in New Issue
Block a user