File tree Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -14,7 +14,7 @@ import { add_thread_prefix } from '../utils/threads';
14
14
15
15
export default event ( {
16
16
name : 'messageCreate' ,
17
- run : async ( { } , message ) => {
17
+ run : async ( { } , message ) => {
18
18
// Rules for whether or not the message should be dealt with by the bot
19
19
const should_ignore =
20
20
message . author . bot ||
@@ -96,7 +96,7 @@ export default event({
96
96
} ,
97
97
} ) ;
98
98
99
- async function send_instruction_message ( thread : ThreadChannel ) {
99
+ async function send_instruction_message ( thread : ThreadChannel ) {
100
100
const base_description =
101
101
"I've created a thread for your message. Please continue any discussion in this thread. You can rename it with the `/thread rename` command if I didn't set a proper name for it." ;
102
102
Original file line number Diff line number Diff line change 9
9
} from 'discord.js' ;
10
10
import { REACTION_ROLE , REACTION_ROLE_CHANNEL } from '../config' ;
11
11
12
- export async function hasPermission (
12
+ export async function hasPermission (
13
13
reaction : MessageReaction | PartialMessageReaction ,
14
14
user : User | PartialUser ,
15
15
) : Promise < { member : GuildMember ; roleId : string } > {
@@ -55,7 +55,7 @@ export async function hasPermission (
55
55
}
56
56
}
57
57
58
- export async function sendReactionRoleMessage ( client : Client ) {
58
+ export async function sendReactionRoleMessage ( client : Client ) {
59
59
try {
60
60
const channel = client . channels . cache . get (
61
61
REACTION_ROLE_CHANNEL ,
@@ -75,7 +75,7 @@ export async function sendReactionRoleMessage (client: Client) {
75
75
) ;
76
76
messageArray . push ( '\n**<#879007560429088800>**' ) ;
77
77
messageArray . push (
78
- "If you'd like to get involved with Tauri development you can react to the Tauri Contributor role below to be able to chat in the various channels ." ,
78
+ "Get involved with Tauri development and browse the different projects ." ,
79
79
) ;
80
80
messageArray . push ( '\n**<#683637724116418561>**' ) ;
81
81
messageArray . push (
You can’t perform that action at this time.
0 commit comments