File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -92,7 +92,7 @@ Here's an example `content` command which replies with the content of the target
92
92
},
93
93
94
94
run : ({ interaction, client, handler }) => {
95
- interaction .reply (` The message is: ${ interaction .targetMessage } ` );
95
+ interaction .reply (` The message is: ${ interaction .targetMessage . content } ` );
96
96
},
97
97
98
98
options: {
@@ -115,7 +115,7 @@ Here's an example `content` command which replies with the content of the target
115
115
}
116
116
117
117
export function run ({ interaction, client, handler }) {
118
- interaction .reply (` The message is: ${ interaction .targetMessage } ` );
118
+ interaction .reply (` The message is: ${ interaction .targetMessage . content } ` );
119
119
}
120
120
121
121
export const options = {
@@ -138,7 +138,7 @@ Here's an example `content` command which replies with the content of the target
138
138
}
139
139
140
140
export function run({ interaction , client , handler }: ContextMenuCommandProps ) {
141
- interaction .reply (` The message is: ${interaction .targetMessage } ` );
141
+ interaction .reply (` The message is: ${interaction .targetMessage . content } ` );
142
142
}
143
143
144
144
export const options: CommandOptions = {
You can’t perform that action at this time.
0 commit comments