()
| 226 | } |
| 227 | |
| 228 | static addTextParam() { |
| 229 | this.flags.unshift({ |
| 230 | name: "text", |
| 231 | nameLocalizations: getAllLocalizations("image.flagNames.text"), |
| 232 | type: Constants.ApplicationCommandOptionTypes.STRING, |
| 233 | description: "The text to put on the image", |
| 234 | descriptionLocalizations: getAllLocalizations("image.flags.text"), |
| 235 | maxLength: 4096, |
| 236 | required: !this.textOptional, |
| 237 | classic: true, |
| 238 | }); |
| 239 | } |
| 240 | |
| 241 | static init() { |
| 242 | this.flags = []; |