Skip to content

Commit

Permalink
Fix missing default value in utility args
Browse files Browse the repository at this point in the history
  • Loading branch information
NoComment1105 committed Sep 20, 2024
1 parent 1fd8256 commit e9f74be
Showing 1 changed file with 3 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -17,13 +17,16 @@ class UtilityArgs : Arguments() {
val logEventUpdates by defaultingBoolean {
name = "log-event-updates"
description = "Whether to log changes made to scheduled events in this guild."
defaultValue = false
}
val logInviteUpdates by defaultingBoolean {
name = "log-invite-updates"
description = "Whether to log changes made to invites in this guild."
defaultValue = false
}
val logRoleUpdates by defaultingBoolean {
name = "log-role-updates"
description = "Whether to log changes made to roles in this guild."
defaultValue = false
}
}

0 comments on commit e9f74be

Please sign in to comment.