This commit is contained in:
Daniel Odendahl Jr
2017-04-30 22:56:59 +00:00
parent 83e990ae1c
commit 877f720cfc
105 changed files with 460 additions and 461 deletions
+2 -2
View File
@@ -15,8 +15,8 @@ module.exports = class CuddleCommand extends Command {
});
}
run(message, args) {
run(msg, args) {
const { thing } = args;
return message.say(`${message.author} *cuddles* ${thing}`);
return msg.say(`${msg.author} *cuddles* ${thing}`);
}
};
+2 -2
View File
@@ -15,8 +15,8 @@ module.exports = class DivorceCommand extends Command {
});
}
run(message, args) {
run(msg, args) {
const { thing } = args;
return message.say(`${message.author} *divorces* ${thing}`);
return msg.say(`${msg.author} *divorces* ${thing}`);
}
};
+2 -2
View File
@@ -15,8 +15,8 @@ module.exports = class EatCommand extends Command {
});
}
run(message, args) {
run(msg, args) {
const { thing } = args;
return message.say(`${message.author} *eats* ${thing}`);
return msg.say(`${msg.author} *eats* ${thing}`);
}
};
+2 -2
View File
@@ -15,8 +15,8 @@ module.exports = class FalconPunchCommand extends Command {
});
}
run(message, args) {
run(msg, args) {
const { thing } = args;
return message.say(`${message.author} *falcon punches* ${thing}`);
return msg.say(`${msg.author} *falcon punches* ${thing}`);
}
};
+2 -2
View File
@@ -15,8 +15,8 @@ module.exports = class FistBumpCommand extends Command {
});
}
run(message, args) {
run(msg, args) {
const { thing } = args;
return message.say(`${message.author} *fist-bumps* ${thing} *badalalala*`);
return msg.say(`${msg.author} *fist-bumps* ${thing} *badalalala*`);
}
};
+2 -2
View File
@@ -15,8 +15,8 @@ module.exports = class HighFivesCommand extends Command {
});
}
run(message, args) {
run(msg, args) {
const { thing } = args;
return message.say(`${message.author} *high-fives* ${thing}`);
return msg.say(`${msg.author} *high-fives* ${thing}`);
}
};
+2 -2
View File
@@ -15,8 +15,8 @@ module.exports = class HitwithShovelCommand extends Command {
});
}
run(message, args) {
run(msg, args) {
const { thing } = args;
return message.say(`${message.author} *hits* ${thing} *with a shovel*`);
return msg.say(`${msg.author} *hits* ${thing} *with a shovel*`);
}
};
+2 -2
View File
@@ -15,8 +15,8 @@ module.exports = class HugCommand extends Command {
});
}
run(message, args) {
run(msg, args) {
const { thing } = args;
return message.say(`${message.author} *hugs* ${thing}`);
return msg.say(`${msg.author} *hugs* ${thing}`);
}
};
+2 -2
View File
@@ -15,8 +15,8 @@ module.exports = class InhaleCommand extends Command {
});
}
run(message, args) {
run(msg, args) {
const { thing } = args;
return message.say(`${message.author} *inhales* ${thing} *but gained no ability...*`);
return msg.say(`${msg.author} *inhales* ${thing} *but gained no ability...*`);
}
};
+2 -2
View File
@@ -15,8 +15,8 @@ module.exports = class KillCommand extends Command {
});
}
run(message, args) {
run(msg, args) {
const { thing } = args;
return message.say(`${message.author} *kills* ${thing}`);
return msg.say(`${msg.author} *kills* ${thing}`);
}
};
+2 -2
View File
@@ -15,8 +15,8 @@ module.exports = class KissCommand extends Command {
});
}
run(message, args) {
run(msg, args) {
const { thing } = args;
return message.say(`${message.author} *kisses* ${thing}`);
return msg.say(`${msg.author} *kisses* ${thing}`);
}
};
+2 -2
View File
@@ -15,8 +15,8 @@ module.exports = class MarryCommand extends Command {
});
}
run(message, args) {
run(msg, args) {
const { thing } = args;
return message.say(`${message.author} *marries* ${thing}`);
return msg.say(`${msg.author} *marries* ${thing}`);
}
};
+2 -2
View File
@@ -15,8 +15,8 @@ module.exports = class PatCommand extends Command {
});
}
run(message, args) {
run(msg, args) {
const { thing } = args;
return message.say(`${message.author} *pats* ${thing}`);
return msg.say(`${msg.author} *pats* ${thing}`);
}
};
+2 -2
View File
@@ -15,8 +15,8 @@ module.exports = class PokeCommand extends Command {
});
}
run(message, args) {
run(msg, args) {
const { thing } = args;
return message.say(`${message.author} *pokes* ${thing}`);
return msg.say(`${msg.author} *pokes* ${thing}`);
}
};
+2 -2
View File
@@ -15,8 +15,8 @@ module.exports = class PunchCommand extends Command {
});
}
run(message, args) {
run(msg, args) {
const { thing } = args;
return message.say(`${message.author} *punches* ${thing}`);
return msg.say(`${msg.author} *punches* ${thing}`);
}
};
+2 -2
View File
@@ -15,8 +15,8 @@ module.exports = class SlapCommand extends Command {
});
}
run(message, args) {
run(msg, args) {
const { thing } = args;
return message.say(`${message.author} *slaps* ${thing}`);
return msg.say(`${msg.author} *slaps* ${thing}`);
}
};