-
-
Notifications
You must be signed in to change notification settings - Fork 208
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Improvement + Fix: Personal Bests Gain (#2996)
Co-authored-by: CalMWolfs <94038482+CalMWolfs@users.noreply.github.com> Co-authored-by: Chiss5618 <78828070+Chiss5618@users.noreply.github.com> Co-authored-by: hannibal2 <24389977+hannibal00212@users.noreply.github.com>
- Loading branch information
1 parent
ba8d210
commit 030c373
Showing
5 changed files
with
63 additions
and
17 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
26 changes: 26 additions & 0 deletions
26
src/main/java/at/hannibal2/skyhanni/config/features/garden/PersonalBestsConfig.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
package at.hannibal2.skyhanni.config.features.garden; | ||
|
||
import at.hannibal2.skyhanni.config.FeatureToggle; | ||
import com.google.gson.annotations.Expose; | ||
import io.github.notenoughupdates.moulconfig.annotations.ConfigEditorBoolean; | ||
import io.github.notenoughupdates.moulconfig.annotations.ConfigOption; | ||
|
||
|
||
public class PersonalBestsConfig { | ||
@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 increaseFF = true; | ||
|
||
@Expose | ||
@ConfigOption( | ||
name = "Overflow Personal Bests", | ||
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 | ||
public boolean overflow = false; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters