@@ -229,19 +229,19 @@ abstract class Configurable(
229229 name : String ,
230230 defaultValue : Bind ,
231231 description : String = "",
232- alwaysListen : Boolean = false,
232+ alwaysListening : Boolean = false,
233233 screenCheck : Boolean = true,
234234 visibility : () -> Boolean = { true },
235- ) = Setting (name, description, KeybindSetting (defaultValue, this as ? Muteable , alwaysListen , screenCheck), this , visibility).register()
235+ ) = Setting (name, description, KeybindSetting (defaultValue, this as ? Muteable , alwaysListening , screenCheck), this , visibility).register()
236236
237237 fun setting (
238238 name : String ,
239239 defaultValue : KeyCode ,
240240 description : String = "",
241- alwaysListen : Boolean = false,
241+ alwaysListening : Boolean = false,
242242 screenCheck : Boolean = true,
243243 visibility : () -> Boolean = { true },
244- ) = Setting (name, description, KeybindSetting (defaultValue, this as ? Muteable , alwaysListen , screenCheck), this , visibility).register()
244+ ) = Setting (name, description, KeybindSetting (defaultValue, this as ? Muteable , alwaysListening , screenCheck), this , visibility).register()
245245
246246 fun setting (
247247 name : String ,
0 commit comments