Skip to content

Commit

Permalink
changes for app discovery
Browse files Browse the repository at this point in the history
  • Loading branch information
Dougley committed Jul 28, 2022
1 parent 28e2b39 commit 690dd5f
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions src/interactions/slash-commands/booru/booru.rule34.ts
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@ export interface CommandArgs {
}

export class BooruRule34Command extends BaseCommandOption {
name = 'rule34'
description = 'Query rule34.xxx'
name = 'r34'
description = 'If it exists...'
triggerLoadingAfter = 2000
translationPath = 'booru'

Expand Down
6 changes: 3 additions & 3 deletions src/interactions/slash-commands/booru/index.ts
Original file line number Diff line number Diff line change
@@ -1,19 +1,19 @@
import { BaseSlashCommand } from '../../base'
import { BooruDerpibooruCommand } from './booru.derpibooru'
import { BooruE621Command } from './booru.e621'
import { BooruGelbooruCommand } from './booru.gelbooru'
// import { BooruGelbooruCommand } from './booru.gelbooru'
import { BooruRule34Command } from './booru.rule34'

export default class BooruBaseCommand extends BaseSlashCommand {
description = '.' // not shown
description = 'Query various image boards for images'
name = 'booru'

constructor () {
super({
options: [
new BooruE621Command(),
new BooruRule34Command(),
new BooruGelbooruCommand(),
// new BooruGelbooruCommand(),
new BooruDerpibooruCommand()
]
})
Expand Down
2 changes: 1 addition & 1 deletion src/interactions/slash-commands/tag/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import { TagInfoCommand } from './tag.info'
import { ShowTagCommand } from './tag.show'

export default class TagBaseCommand extends BaseSlashCommand {
description = '.' // not shown
description = 'Create and manage tags'
name = 'tag'

constructor () {
Expand Down

0 comments on commit 690dd5f

Please sign in to comment.