File tree 3 files changed +29
-1
lines changed
3 files changed +29
-1
lines changed Original file line number Diff line number Diff line change @@ -9,6 +9,13 @@ import {
9
9
10
10
const defaultConfig : Config = {
11
11
prefix : '!' ,
12
+ customPrefixes : [
13
+ {
14
+ guildId : "GUILD_ID" ,
15
+ prefix : "?"
16
+ }
17
+ ] ,
18
+
12
19
ownerId : 'YOUR_USER_ID' ,
13
20
eventsFolder : 'events' ,
14
21
commandsFolder : 'commands' ,
Original file line number Diff line number Diff line change @@ -7,7 +7,22 @@ import { CommandHandler } from '../../commands/services/CommandHandler';
7
7
export default new Event ( {
8
8
name : Events . MessageCreate ,
9
9
async execute ( message : Message ) : Promise < void > {
10
- if ( ! client . user || message . author . bot || ! message . content . startsWith ( config . prefix ) ) return ;
10
+ if ( ! client . user || message . author . bot ) {
11
+ return ;
12
+ }
13
+
14
+ let prefix : string = config . prefix ;
15
+ if ( message . guild ?. id && config . customPrefixes ) {
16
+ const customPrefix : string | undefined = config . customPrefixes . find (
17
+ ( p ) => p . guildId === message . guild ! . id ,
18
+ ) ?. prefix ;
19
+ if ( customPrefix ) prefix = customPrefix ;
20
+ }
21
+
22
+ if ( ! message . content . startsWith ( prefix ) ) {
23
+ return ;
24
+ }
25
+
11
26
await CommandHandler . handlePrefixCommand ( message ) ;
12
27
} ,
13
28
} ) ;
Original file line number Diff line number Diff line change @@ -8,6 +8,7 @@ import type {
8
8
9
9
export interface Config {
10
10
prefix : string ;
11
+ customPrefixes ?: CustomPrefix [ ] ;
11
12
ownerId ?: string ;
12
13
eventsFolder : string ;
13
14
commandsFolder : string ;
@@ -25,3 +26,8 @@ export interface LogChannelConfig {
25
26
commandType : string ,
26
27
) => Promise < MessageReplyOptions > ;
27
28
}
29
+
30
+ export interface CustomPrefix {
31
+ guildId : string ;
32
+ prefix : string ;
33
+ }
You can’t perform that action at this time.
0 commit comments