diff options
author | inglettronald <71849533+inglettronald@users.noreply.github.com> | 2023-03-21 18:08:57 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-03-21 18:08:57 -0500 |
commit | 2cb6f4cffee0ab505b35938cf71518e4640a229a (patch) | |
tree | 02224acacc7e7823079a8e2cc24377eafe33700c /src/main/kotlin/dulkirmod/config/Config.kt | |
parent | 05c6b155f1de3a96ef081627ff7805238742162f (diff) | |
parent | 3968c49ccfb1fb3b0c6a8274f4d45ed0ba50ec48 (diff) | |
download | DulkirMod-2cb6f4cffee0ab505b35938cf71518e4640a229a.tar.gz DulkirMod-2cb6f4cffee0ab505b35938cf71518e4640a229a.tar.bz2 DulkirMod-2cb6f4cffee0ab505b35938cf71518e4640a229a.zip |
Merge pull request #11 from IlmarsXd/master
refactor modules (class -> object), add memory leak fix
Diffstat (limited to 'src/main/kotlin/dulkirmod/config/Config.kt')
-rw-r--r-- | src/main/kotlin/dulkirmod/config/Config.kt | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/main/kotlin/dulkirmod/config/Config.kt b/src/main/kotlin/dulkirmod/config/Config.kt index 8fe611d..1088ad1 100644 --- a/src/main/kotlin/dulkirmod/config/Config.kt +++ b/src/main/kotlin/dulkirmod/config/Config.kt @@ -13,6 +13,14 @@ object Config : Vigilant(File("./config/dulkirmod/config.toml"), "DulkirMod", so @Property( type = PropertyType.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.", + category = "General" + ) + var crimsonIslesMemoryLeakPatch = true + + @Property( + type = PropertyType.SWITCH, name = "Hide Enchant Rune Particles", description = "ugly go bye-bye", category = "General" |