-
-
Notifications
You must be signed in to change notification settings - Fork 200
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
Improvement + Fix: Personal Bests Gain #2996
base: beta
Are you sure you want to change the base?
Conversation
Improvement + Fix: Personal Bests Gain
desc = "Show in chat how much more FF you would have gotten over your previous record if personal best fortune cap was not 100" | ||
) | ||
@ConfigEditorBoolean | ||
@FeatureToggle |
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.
As I wouldnt consider this here a standalone feature this config option doesnt need a feature toggle annotation
@Expose | ||
@ConfigOption( | ||
name = "Personal Best Increase FF", | ||
desc = "Show in chat how much more FF you get from farming contest personal best bonus after beating the previous record." | ||
) | ||
@ConfigEditorBoolean | ||
@FeatureToggle | ||
public boolean contestPersonalBestIncreaseFF = true; |
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.
because you are moving this option, you need to add a config fix so that if people turned it off before it wont turn back on, search the codebase for examples
Dependencies
What
Fixes incorrect personal best gain calculations if new personal best is over the max pb, adds option to show overflow personal bests.
Changelog Improvements
Changelog Fixes