From 79894d22b49f943bcbedb22b9d515eb3db622886 Mon Sep 17 00:00:00 2001 From: Moulberry Date: Sun, 30 Aug 2020 02:51:50 +1000 Subject: 1.2.4 --- .../moulberry/notenoughupdates/options/Options.java | 20 +++++++++++++++++++- 1 file changed, 19 insertions(+), 1 deletion(-) (limited to 'src/main/java/io/github/moulberry/notenoughupdates/options/Options.java') diff --git a/src/main/java/io/github/moulberry/notenoughupdates/options/Options.java b/src/main/java/io/github/moulberry/notenoughupdates/options/Options.java index 53c6e00b..9dc0e714 100644 --- a/src/main/java/io/github/moulberry/notenoughupdates/options/Options.java +++ b/src/main/java/io/github/moulberry/notenoughupdates/options/Options.java @@ -47,7 +47,7 @@ public class Options { true, "Quick Commands", false, - "Shows QuickCommands™ above search bar."); + "Shows QuickCommands\u2122 above search bar."); public Option showUpdateMsg = new Option( true, "Show Update Notifs", @@ -138,6 +138,11 @@ public class Options { "Price Info in Auction Lore", false, "If true, will show price information about an item inside the auction house item tooltip."); + public Option useCustomTrade = new Option( + true, + "Custom Trade", + false, + "If true, uses the custom trade window for skyblock trades."); public Option paneWidthMult = new Option( 1.0, "Pane Width", @@ -192,6 +197,16 @@ public class Options { "loadedModBefore", true, "loadedModBefore"); + public Option customTradePrices = new Option( + true, + "Trade Item Values", + true, + "If true, shows a window with the total item value of either side"); + public Option customTradePriceStyle = new Option( + true, + "Trade Prices Style", + true, + "Changes the style of the top item prices"); public Option selectedCape = new Option( "", "Selected Cape", @@ -328,6 +343,9 @@ public class Options { tryAddOption(disableItemTabOpen, options); tryAddOption(dungeonProfitLore, options); tryAddOption(auctionPriceInfo, options); + tryAddOption(useCustomTrade, options); + tryAddOption(customTradePrices, options); + tryAddOption(customTradePriceStyle, options); //Sliders tryAddOption(smoothAoteMillis, options); tryAddOption(bgBlurFactor, options); -- cgit