Merge branch 'main' of github.com:cooljith91112/lul-bot

This commit is contained in:
Indrajith K L
2021-05-26 10:20:40 +05:30
4 changed files with 164 additions and 3 deletions

View File

@@ -11,5 +11,10 @@
"nee araa": "താൻ ആരാണെന്ന് തനിക്ക് അറിയാന്മേലെങ്കിൽ താൻ എന്നോട് ചോയ്ക്ക് താൻ ആരാണെന്ന്??? തനിക്ക് ഞാൻ പറഞ്ഞു തരാം താൻ ആരാണെന്ന്... 🤪🤪",
"kya banana hei": "Thumarah banana kaha hei...🤣🤣",
"ക്യാ ബനാന ഹേയ്": "തുമരഹ് ബനാന കഹാ ഹേയ്...🤣🤣",
"good night": "Good Night 🌉. See you tomorrow. 👋👋"
"good night": "Good Night 🌉. See you tomorrow. 👋👋",
"ola": "ഓല അല്ല തേങ്ങാ",
"അങ്ങിനെ പറയാതെ": "പിന്നെ എങ്ങിനെ പറയണം!!",
"kool": "എത്രെ ഡിഗ്രീ ഉണ്ട്? 🤣🤣",
"cool": "എത്രെ ഡിഗ്രീ ഉണ്ട്? 🤣🤣",
"adipoli": "മ് മ്"
}

View File

@@ -64,7 +64,11 @@ function parseCMD(message) {
if (!client.commands.has(CMD_NAME)) return false;
client.commands.get(CMD_NAME).execute(client, message, args);
if (typeof client.commands.get(CMD_NAME).execute === "function") {
client.commands.get(CMD_NAME).execute(client, message, args);
} else {
console.log(`execute method is not implemented for ${CMD_NAME}.js`);
}
return true;
}