diff options
| author | hannibal2 <24389977+hannibal002@users.noreply.github.com> | 2023-08-05 17:46:27 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-08-05 17:46:27 +0200 |
| commit | 1312f5b1bccfa48ad87b2fa040005398a97ed6ad (patch) | |
| tree | 1dcaeb1a0b09f4f1e7cb657c6119f33e97e58572 /src/main/java/at/hannibal2/skyhanni/config | |
| parent | 6af9397f43561548086b8ed7fcfb5690136278ea (diff) | |
| parent | 4e7cd6dd7c997f75778f3640248bf4a9057eb841 (diff) | |
| download | skyhanni-1312f5b1bccfa48ad87b2fa040005398a97ed6ad.tar.gz skyhanni-1312f5b1bccfa48ad87b2fa040005398a97ed6ad.tar.bz2 skyhanni-1312f5b1bccfa48ad87b2fa040005398a97ed6ad.zip | |
Merge pull request #352
Ghost bestiary update
Diffstat (limited to 'src/main/java/at/hannibal2/skyhanni/config')
| -rw-r--r-- | src/main/java/at/hannibal2/skyhanni/config/Storage.java | 3 | ||||
| -rw-r--r-- | src/main/java/at/hannibal2/skyhanni/config/features/GhostCounterConfig.java | 5 |
2 files changed, 6 insertions, 2 deletions
diff --git a/src/main/java/at/hannibal2/skyhanni/config/Storage.java b/src/main/java/at/hannibal2/skyhanni/config/Storage.java index 166514e30..080b77ce8 100644 --- a/src/main/java/at/hannibal2/skyhanni/config/Storage.java +++ b/src/main/java/at/hannibal2/skyhanni/config/Storage.java @@ -248,6 +248,9 @@ public class Storage { @Expose public double totalMF = 0; + @Expose + public int configUpdateVersion = 0; + } @Expose diff --git a/src/main/java/at/hannibal2/skyhanni/config/features/GhostCounterConfig.java b/src/main/java/at/hannibal2/skyhanni/config/features/GhostCounterConfig.java index 4aed852c1..d69b6e833 100644 --- a/src/main/java/at/hannibal2/skyhanni/config/features/GhostCounterConfig.java +++ b/src/main/java/at/hannibal2/skyhanni/config/features/GhostCounterConfig.java @@ -172,7 +172,8 @@ public class GhostCounterConfig { "§e%nextLevel% §7is replaced with your current bestiary level +1.\n" + "§e%value% §7is replaced with one of the text below.") @ConfigEditorText - public String base = " &6Bestiary %currentLevel%->%nextLevel%: &b%value%"; + // public String base = " &6Bestiary %currentLevel%->%nextLevel%: &b%value%"; + public String base = " &6Bestiary %display%: &b%value%"; @Expose @ConfigOption(name = "No Data", desc = "Text to show when you need to open the\nBestiary Menu to gather data.") @@ -189,7 +190,7 @@ public class GhostCounterConfig { @ConfigOption(name = "Progress to Max", desc = "Text to show progress when the §eMaxed Bestiary §7option is §aON\n" + "§e%currentKill% §7is replaced with your current total kill.") @ConfigEditorText - public String showMax_progress = "%currentKill%/3M (%percentNumber%%)"; + public String showMax_progress = "%currentKill%/250k (%percentNumber%%)"; @Expose @ConfigOption(name = "Progress", desc = "Text to show progress when the §eMaxed Bestiary§7 option is §cOFF\n" + |
