mirror of
https://github.com/arthur-pbty/xiao.git
synced 2026-06-15 15:57:47 +02:00
msg
This commit is contained in:
@@ -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}`);
|
||||
}
|
||||
};
|
||||
|
||||
@@ -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}`);
|
||||
}
|
||||
};
|
||||
|
||||
@@ -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}`);
|
||||
}
|
||||
};
|
||||
|
||||
@@ -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}`);
|
||||
}
|
||||
};
|
||||
|
||||
@@ -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*`);
|
||||
}
|
||||
};
|
||||
|
||||
@@ -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}`);
|
||||
}
|
||||
};
|
||||
|
||||
@@ -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*`);
|
||||
}
|
||||
};
|
||||
|
||||
@@ -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}`);
|
||||
}
|
||||
};
|
||||
|
||||
@@ -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...*`);
|
||||
}
|
||||
};
|
||||
|
||||
@@ -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}`);
|
||||
}
|
||||
};
|
||||
|
||||
@@ -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}`);
|
||||
}
|
||||
};
|
||||
|
||||
@@ -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}`);
|
||||
}
|
||||
};
|
||||
|
||||
@@ -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}`);
|
||||
}
|
||||
};
|
||||
|
||||
@@ -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}`);
|
||||
}
|
||||
};
|
||||
|
||||
@@ -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}`);
|
||||
}
|
||||
};
|
||||
|
||||
@@ -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}`);
|
||||
}
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user