1
0
Fork 0

trying to see where this shit breaks

refactor/models
Bsian 2020-04-02 01:07:37 +01:00
parent 16a6a01e6b
commit 3651e9fcad
No known key found for this signature in database
GPG Key ID: 097FB9A291026091
1 changed files with 1 additions and 1 deletions

View File

@ -34,7 +34,7 @@ export default class Eval extends Command {
evalString = `(async () => { ${evalMessage.slice(index).join(' ').trim()} })()`; evalString = `(async () => { ${evalMessage.slice(index).join(' ').trim()} })()`;
} }
message.channel.createMessage(`${evalString}`); message.channel.createMessage(`${evalString}\n${args[0]}\n${args[1]}`);
try { try {
evaled = await eval(evalString); evaled = await eval(evalString);