mirror of
https://github.com/kiranhart/Auction-House.git
synced 2024-11-22 05:25:11 +01:00
removed unneeded todos
This commit is contained in:
parent
2193362251
commit
2f4fda7bd2
@ -28,7 +28,6 @@ import java.util.UUID;
|
|||||||
* Usage of any code found within this class is prohibited unless given explicit permission otherwise
|
* Usage of any code found within this class is prohibited unless given explicit permission otherwise
|
||||||
*/
|
*/
|
||||||
|
|
||||||
// TODO CLEAN UP THE ENTIRE PRICE UPDATE THING
|
|
||||||
public class GUISellItem extends Gui {
|
public class GUISellItem extends Gui {
|
||||||
|
|
||||||
private final AuctionPlayer auctionPlayer;
|
private final AuctionPlayer auctionPlayer;
|
||||||
|
@ -21,7 +21,6 @@ import java.util.HashMap;
|
|||||||
* Usage of any code found within this class is prohibited unless given explicit permission otherwise
|
* Usage of any code found within this class is prohibited unless given explicit permission otherwise
|
||||||
*/
|
*/
|
||||||
|
|
||||||
//TODO IN the main auction house, switch the filter icon to the currently selected filter
|
|
||||||
public class GUIFilterSelection extends Gui {
|
public class GUIFilterSelection extends Gui {
|
||||||
|
|
||||||
final AuctionPlayer auctionPlayer;
|
final AuctionPlayer auctionPlayer;
|
||||||
@ -53,7 +52,6 @@ public class GUIFilterSelection extends Gui {
|
|||||||
setButton(1, 5, ConfigurationItemHelper.createConfigurationItem(Settings.GUI_FILTER_ITEMS_SEARCH_ITEM.getString(), Settings.GUI_FILTER_ITEMS_SEARCH_NAME.getString(), Settings.GUI_FILTER_ITEMS_SEARCH_LORE.getStringList(), new HashMap<String, Object>(){{
|
setButton(1, 5, ConfigurationItemHelper.createConfigurationItem(Settings.GUI_FILTER_ITEMS_SEARCH_ITEM.getString(), Settings.GUI_FILTER_ITEMS_SEARCH_NAME.getString(), Settings.GUI_FILTER_ITEMS_SEARCH_LORE.getStringList(), new HashMap<String, Object>(){{
|
||||||
put("%filter_search_phrase%", auctionPlayer.getCurrentSearchPhrase());
|
put("%filter_search_phrase%", auctionPlayer.getCurrentSearchPhrase());
|
||||||
}}), e -> {
|
}}), e -> {
|
||||||
//TODO ADD AN ACTUAL MESSAGE NODE FOR THIS
|
|
||||||
e.gui.exit();
|
e.gui.exit();
|
||||||
ChatPrompt.showPrompt(AuctionHouse.getInstance(), this.auctionPlayer.getPlayer(), AuctionHouse.getInstance().getLocale().getMessage("general.entersearchphrase").getMessage(), chat -> {
|
ChatPrompt.showPrompt(AuctionHouse.getInstance(), this.auctionPlayer.getPlayer(), AuctionHouse.getInstance().getLocale().getMessage("general.entersearchphrase").getMessage(), chat -> {
|
||||||
if (chat.getMessage() != null && chat.getMessage().length() !=0) {
|
if (chat.getMessage() != null && chat.getMessage().length() !=0) {
|
||||||
|
Loading…
Reference in New Issue
Block a user