File tree Expand file tree Collapse file tree 1 file changed +2
-1
lines changed
backend/src/plugins/Utility/commands Expand file tree Collapse file tree 1 file changed +2
-1
lines changed Original file line number Diff line number Diff line change 11import { LoadedGuildPlugin , PluginCommandDefinition } from "knub" ;
22import { commandTypeHelpers as ct } from "../../../commandTypes.js" ;
3+ import { env } from "../../../env.js" ;
34import { createChunkedMessage } from "../../../utils.js" ;
45import { utilityCmd } from "../types.js" ;
56
@@ -62,7 +63,7 @@ export const HelpCmd = utilityCmd({
6263 let snippet = `**${ prefix } ${ trigger } **` ;
6364 if ( description ) snippet += `\n${ description } ` ;
6465 if ( usage ) snippet += `\nBasic usage: \`${ usage } \`` ;
65- snippet += `\n<https://zeppelin.gg /docs/plugins/${ plugin . blueprint . name } /usage#command-${ commandSlug } >` ;
66+ snippet += `\n<${ env . DASHBOARD_URL } /docs/plugins/${ plugin . blueprint . name } /usage#command-${ commandSlug } >` ;
6667
6768 return snippet ;
6869 } ) ;
You can’t perform that action at this time.
0 commit comments