Skip to content
This repository was archived by the owner on Sep 18, 2024. It is now read-only.

Commit 3dab8ea

Browse files
authored
Merge pull request #38 from BryanSuero/patch-1
Quick fix
2 parents 9a49a69 + f32364a commit 3dab8ea

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

commands/reload.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
exports.run = async (client, message, args, level) => {// eslint-disable-line no-unused-vars
2-
if (!args || args.size < 1) return message.reply("Must provide a command to reload. Derp.");
2+
if (!args || args.length < 1) return message.reply("Must provide a command to reload. Derp.");
33

44
let response = await client.unloadCommand(args[0]);
55
if (response) return message.reply(`Error Unloading: ${response}`);

0 commit comments

Comments
 (0)