You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
val priorityForGui =IntegerSetting("Priority In GUI", 0, 0..1000, 50, { ClickGUI.sortBy.value ==ClickGUI.SortByOptions.CUSTOM }, fineStep =1).also(::addSetting)
38
45
val clicks =IntegerSetting("Clicks", 0, 0..Int.MAX_VALUE, 1, { false }).also(::addSetting) // Not nice, however easiest way to save it.
46
+
enumclassToggleMode {
47
+
TOGGLE, HOLD
48
+
}
39
49
40
50
val fullSettingList get() = (config asNameableConfig<Nameable>).getSettings(this)
41
51
val settingList:List<AbstractSetting<*>> get() = fullSettingList.filter { it != bind && it != enabled && it != visible && it != default && it != clicks }
@@ -138,6 +148,15 @@ abstract class AbstractModule(
0 commit comments