@@ -5,7 +5,7 @@ export const SlashManageMediaLinks: SlashCommand = {
55 options : {
66 name : "media_link" ,
77 description : "Manages links from the bot replies." ,
8- default_member_permissions : Discord . PermissionsBitField . Flags . ManageGuild . toString ( ) ,
8+ default_member_permissions : "0" ,
99 options : [
1010 {
1111 type : Discord . ApplicationCommandOptionType . Subcommand ,
@@ -52,7 +52,7 @@ export const SlashForceMotd: SlashCommand = {
5252 options : {
5353 name : "force_motd" ,
5454 description : "forces the bot to send the motd" ,
55- default_member_permissions : Discord . PermissionsBitField . Flags . ManageGuild . toString ( ) ,
55+ default_member_permissions : "0" ,
5656 } ,
5757 execute : async ( ctx , bot ) => {
5858 const msg = await ( await bot . container . getService ( "Motd" ) ) . executeMessageJob ( ) ;
@@ -67,7 +67,7 @@ export const MenuManageMediaLinksCommand: MenuCommand = {
6767 options : {
6868 name : "remove media from bot cache" ,
6969 type : Discord . ApplicationCommandType . Message ,
70- default_member_permissions : Discord . PermissionsBitField . Flags . ManageGuild . toString ( ) ,
70+ default_member_permissions : "0" ,
7171 } ,
7272 execute : async ( ctx : Discord . MessageContextMenuCommandInteraction , bot ) => {
7373 const msg = ctx . targetMessage ;
0 commit comments