-
-
Notifications
You must be signed in to change notification settings - Fork 84
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Bazaar Lookup/Misc Options #792
Bazaar Lookup/Misc Options #792
Conversation
src/main/java/de/hysky/skyblocker/skyblock/bazaar/BazaarHelper.java
Outdated
Show resolved
Hide resolved
|
||
public abstract class BazaarHelper extends ContainerSolver { | ||
public BazaarHelper() { | ||
super("Your Bazaar Orders"); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Fun fact. this changes on Co-ops
Co-op Bazaar Orders
This is ready to be rebased. Please let me know if you need any help. |
yes please :( |
Added a Debug Options to the Misc config tab which has the added options to always have debug bounding box's enable and a option to Refresh ToolTip Prices
24301e8
to
5c89e46
Compare
i think i got it idk |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Looks pretty good.
"skyblocker.config.helpers.bazaar.bazaarLookup": "Bazaar Lookup", | ||
"skyblocker.config.helpers.bazaar.bazaarLookup.enableBazaarLookup": "Enable Bazaar Lookup", | ||
"skyblocker.config.helpers.bazaar.bazaarLookup.enableBazaarLookup.@Tooltip": "Searches the Bazaar for the current hovered item with the F3 key.", | ||
"skyblocker.config.helpers.bazaar.bazaarLookup.failedBazaarLookup": "Failed to find item in the Bazaar", | ||
"skyblocker.config.helpers.bazaar.bazaarRefresh.BazaarRefresh": "Bazaar Refresh", | ||
"skyblocker.config.helpers.bazaar.bazaarRefresh.enableBazaarRefresh": "Enable Bazaar Refresh", | ||
"skyblocker.config.helpers.bazaar.bazaarRefresh.enableBazaarRefresh.@Tooltip": "Refresh the Bazaar prices with the Z key.", | ||
"skyblocker.config.helpers.bazaar.bazaarRefresh.yesBazaarRefresh": "Bazaar Refreshed", | ||
"skyblocker.config.helpers.bazaar.bazaarRefresh.noBazaarRefresh": "Bazaar Refresh Failed", |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
These translation keys should match the config and unused keys should be removed. I have fixed this but please remember next time.
public static KeyBinding BazaarLookup; | ||
public static KeyBinding BazaarRefresh; | ||
public static String itemName; | ||
public static void init() { | ||
BazaarLookup = KeyBindingHelper.registerKeyBinding(new KeyBinding( | ||
"key.bazaarLookup", | ||
InputUtil.Type.KEYSYM, | ||
GLFW.GLFW_KEY_F3, | ||
"key.categories.skyblocker" | ||
)); | ||
BazaarRefresh = KeyBindingHelper.registerKeyBinding(new KeyBinding( | ||
"key.bazaarRefresh", | ||
InputUtil.Type.KEYSYM, | ||
GLFW.GLFW_KEY_Z, | ||
"key.categories.skyblocker" | ||
)); | ||
} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Fields should go in front of constructors, and constructors should go in front of static methods. I have fixed this too.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Should work fully after #867 is merged.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
why comment out =[
BZ Lookup "backported" to Master
Added a Debug Options to the Misc config tab
which has the added options to always have debug bounding box's enable and a option to Refresh ToolTip Prices