diff options
-rw-r--r-- | src/main/kotlin/dulkirmod/config/DulkirConfig.kt | 24 |
1 files changed, 8 insertions, 16 deletions
diff --git a/src/main/kotlin/dulkirmod/config/DulkirConfig.kt b/src/main/kotlin/dulkirmod/config/DulkirConfig.kt index 2703ee5..1306b53 100644 --- a/src/main/kotlin/dulkirmod/config/DulkirConfig.kt +++ b/src/main/kotlin/dulkirmod/config/DulkirConfig.kt @@ -23,6 +23,14 @@ object DulkirConfig : Config(Mod("DulkirMod", ModType.SKYBLOCK), "dulkirmod-conf var crimsonIslesMemoryLeakPatch = true @Switch( + name = "Remove Useless Armor Stands", + description = "Another hypixel issue, should be a significant fps boost in relevant scenarios.", + category = "General", + subcategory = "General" + ) + var blankStandRemoval = true + + @Switch( name = "Hide Enchant Rune Particles", description = "ugly go bye-bye", category = "General", @@ -46,22 +54,6 @@ object DulkirConfig : Config(Mod("DulkirMod", ModType.SKYBLOCK), "dulkirmod-conf ) var abiCallerID = false - @Switch( - name = "View Bobbing Features", - description = "Global Toggle, make sure view bobbing is turned on in game settings", - category = "General", - subcategory = "General" - ) - var bobbingFeatures = false - - @Switch( - name = "Hurt Cam Slider", - description = "more or less ouchie", - category = "General", - subcategory = "General" - ) - var hurtCamSlider = false - @Slider( name = "Hurt Cam Intensity", description = "1 is default, make sure other mods noHurtCam stuff is off", |