From c6cc7af69f858b5a644aa1a53403616aed0bdf27 Mon Sep 17 00:00:00 2001 From: Cesium Date: Sun, 2 Nov 2025 17:25:27 -0500 Subject: [PATCH] michael michael bicycle --- index.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/index.js b/index.js index bee88fe..814a71f 100644 --- a/index.js +++ b/index.js @@ -41,7 +41,8 @@ client.on(Events.MessageCreate, message => { } // hehe an eval :3 yeah im hardcoding myself - if (message.content.startsWith('!eval ') && message.author.id === '230659159450845195') { + const peopleWhoCanFunnyEval = ['230659159450845195', '297983197990354944'] + if (message.content.startsWith('!eval ') && peopleWhoCanFunnyEval.includes(message.author.id)) { const code = message.content.slice(6); try { const response = eval(code);