aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/language/language.json7
-rw-r--r--src/main.js6
2 files changed, 11 insertions, 2 deletions
diff --git a/src/language/language.json b/src/language/language.json
index 5912b78..c788513 100644
--- a/src/language/language.json
+++ b/src/language/language.json
@@ -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": "മ് മ്"
} \ No newline at end of file
diff --git a/src/main.js b/src/main.js
index 97ac2dc..d0bb7d6 100644
--- a/src/main.js
+++ b/src/main.js
@@ -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;
}