Fix
This commit is contained in:
parent
cd3f83ffd7
commit
b45178cbfd
4
index.js
4
index.js
@ -55,7 +55,9 @@ async function getMessageContent(message) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
function filterPrompt(string) {
|
function filterPrompt(string) {
|
||||||
return string.replace(client.user.id, config.shapeUserId).replace(client.guilds.cache.get(config.shapeGuild).members.cache.get(config.shapeUserId));
|
const clientUser = client.user;
|
||||||
|
const shapeUser = client.guilds.cache.get(config.shapeGuild).members.cache.get(config.shapeUserId).user;
|
||||||
|
return string.replace(clientUser.id, config.shapeUserId).replace(shapeUser.displayName, clientUser.displayName);
|
||||||
}
|
}
|
||||||
|
|
||||||
async function sendToAI(message) {
|
async function sendToAI(message) {
|
||||||
|
Loading…
Reference in New Issue
Block a user