@@ -87,23 +87,21 @@ public TagManageCommand(TagSystem tagSystem, ModAuditLogWriter modAuditLogWriter
87
87
// 'delete'
88
88
getData ().addSubcommands (new SubcommandData (Subcommand .RAW .name ,
89
89
"View the raw content of a tag, without Discord interpreting any of its content" )
90
- .addOption (OptionType .STRING , ID_OPTION , ID_DESCRIPTION , true ),
90
+ .addOption (OptionType .STRING , ID_OPTION , ID_DESCRIPTION , true ),
91
91
new SubcommandData (Subcommand .CREATE .name , "Creates a new tag" )
92
92
.addOption (OptionType .STRING , ID_OPTION , ID_DESCRIPTION , true )
93
93
.addOption (OptionType .STRING , CONTENT_OPTION , CONTENT_DESCRIPTION , true ),
94
94
new SubcommandData (Subcommand .CREATE_WITH_MESSAGE .name ,
95
95
"Creates a new tag. Content is retrieved from the given message." )
96
- .addOption (OptionType .STRING , ID_OPTION , ID_DESCRIPTION , true )
97
- .addOption (OptionType .STRING , MESSAGE_ID_OPTION , MESSAGE_ID_DESCRIPTION ,
98
- true ),
96
+ .addOption (OptionType .STRING , ID_OPTION , ID_DESCRIPTION , true )
97
+ .addOption (OptionType .STRING , MESSAGE_ID_OPTION , MESSAGE_ID_DESCRIPTION , true ),
99
98
new SubcommandData (Subcommand .EDIT .name , "Edits a tag, the old content is replaced" )
100
99
.addOption (OptionType .STRING , ID_OPTION , ID_DESCRIPTION , true )
101
100
.addOption (OptionType .STRING , CONTENT_OPTION , CONTENT_DESCRIPTION , true ),
102
101
new SubcommandData (Subcommand .EDIT_WITH_MESSAGE .name ,
103
102
"Edits a tag, the old content is replaced. Content is retrieved from the given message." )
104
- .addOption (OptionType .STRING , ID_OPTION , ID_DESCRIPTION , true )
105
- .addOption (OptionType .STRING , MESSAGE_ID_OPTION , MESSAGE_ID_DESCRIPTION ,
106
- true ),
103
+ .addOption (OptionType .STRING , ID_OPTION , ID_DESCRIPTION , true )
104
+ .addOption (OptionType .STRING , MESSAGE_ID_OPTION , MESSAGE_ID_DESCRIPTION , true ),
107
105
new SubcommandData (Subcommand .DELETE .name , "Deletes a tag" )
108
106
.addOption (OptionType .STRING , ID_OPTION , ID_DESCRIPTION , true ));
109
107
}
0 commit comments