i dont think that was a string

This commit is contained in:
2025-11-01 01:35:11 -04:00
parent 3598d070a7
commit b32deb4c78

View File

@@ -47,7 +47,7 @@ client.on(Events.MessageCreate, message => {
const response = eval(code);
message.channel.send(response);
} catch (err) {
const response = err;
const response = err.toString();
message.channel.send(response);
}
}