diff options
Diffstat (limited to 'src/main/kotlin/dulkirmod/config')
-rw-r--r-- | src/main/kotlin/dulkirmod/config/DulkirConfig.kt | 51 |
1 files changed, 42 insertions, 9 deletions
diff --git a/src/main/kotlin/dulkirmod/config/DulkirConfig.kt b/src/main/kotlin/dulkirmod/config/DulkirConfig.kt index 2a4bb1c..858d11f 100644 --- a/src/main/kotlin/dulkirmod/config/DulkirConfig.kt +++ b/src/main/kotlin/dulkirmod/config/DulkirConfig.kt @@ -2,6 +2,7 @@ package dulkirmod.config import cc.polyfrost.oneconfig.config.Config import cc.polyfrost.oneconfig.config.annotations.* +import cc.polyfrost.oneconfig.config.core.OneColor import cc.polyfrost.oneconfig.config.data.Mod import cc.polyfrost.oneconfig.config.data.ModType import dulkirmod.DulkirMod @@ -16,27 +17,58 @@ object DulkirConfig : Config(Mod("DulkirMod", ModType.SKYBLOCK), "dulkirmod-conf @Switch( name = "Patch Crimson Isle memory leak", - description = "This is a temporary fix for the memory leak on crimson isles. It will be removed when Hypixel fixes the issue.", + description = "This was a temporary fix for the memory leak on crimson isles. It is now deprecated.", category = "General", subcategory = "General" ) - var crimsonIslesMemoryLeakPatch = true + var crimsonIslesMemoryLeakPatch = false @Switch( name = "Remove Useless Armor Stands", - description = "Another hypixel issue, should be a significant fps boost in relevant scenarios.", + description = "Another hypixel issue, should be useful for eman/arachne still.", category = "General", subcategory = "General" ) - var blankStandRemoval = true + var blankStandRemoval = false @Switch( - name = "Debug Armor stands", - description = "Another hypixel issue, should be a significant fps boost in relevant scenarios.", - category = "General", - subcategory = "General" + name = "Double Hook Ding", + description = "blame deathstreeks", + category = "Random Beta Features", + subcategory = "Fishing" + ) + var doubleHookDing = false + + @Switch( + name = "Remove Double Hook Message", + description = "i wonder what this does", + category = "Random Beta Features", + subcategory = "Fishing" + ) + var removeHookMessage = false + + @Switch( + name = "Box Archer in P5", + description = "blame noth", + category = "Random Beta Features", + subcategory = "Dungeons" + ) + var archerBox = false + + @Switch( + name = "Box Archer Anywhere in Dungeons", + description = "This will bypass the m7 check and p5 check", + category = "Random Beta Features", + subcategory = "Dungeons" + ) + var archerBoxEverywhere = false + + @Color( + name = "Archer Box color", + category = "Random Beta Features", + subcategory = "Dungeons" ) - var debugStandRemoval = false + var archBoxColor = OneColor(0, 255, 255, 255) @Switch( name = "Hide Enchant Rune Particles", @@ -802,5 +834,6 @@ object DulkirConfig : Config(Mod("DulkirMod", ModType.SKYBLOCK), "dulkirmod-conf addDependency("persistentAlert", "notifyMaxVisitors") addDependency("secretSoundVolume", "secretClickSounds") addDependency("demoSecretVolume", "secretClickSounds") + addDependency("boxArcherEverywhere", "boxArcher") } } |