diff --git a/backend/src/plugins/Automod/triggers/joinVoiceChannel.ts b/backend/src/plugins/Automod/triggers/joinVoiceChannel.ts index f594dd3d..6e310510 100644 --- a/backend/src/plugins/Automod/triggers/joinVoiceChannel.ts +++ b/backend/src/plugins/Automod/triggers/joinVoiceChannel.ts @@ -12,7 +12,9 @@ export const JoinVoiceChannelTrigger = automodTrigger()( include_moves: t.boolean, }), - defaultConfig: {}, + defaultConfig: { + include_moves: false, + }, async match({ triggerConfig, context }) { const matchedChannelId = context.voiceChannel?.joined?.id; diff --git a/backend/src/plugins/Automod/triggers/leaveVoiceChannel.ts b/backend/src/plugins/Automod/triggers/leaveVoiceChannel.ts index 2e83e423..309240ca 100644 --- a/backend/src/plugins/Automod/triggers/leaveVoiceChannel.ts +++ b/backend/src/plugins/Automod/triggers/leaveVoiceChannel.ts @@ -12,7 +12,9 @@ export const LeaveVoiceChannelTrigger = automodTrigger( include_moves: t.boolean, }), - defaultConfig: {}, + defaultConfig: { + include_moves: false, + }, async match({ triggerConfig, context }) { const matchedChannelId = context.voiceChannel?.left?.id;