Files
xiao/commands/games-sp/ib-hardcore-edition.js
T
2020-12-13 09:30:06 -05:00

18 lines
496 B
JavaScript

const Command = require('../../structures/Command');
module.exports = class IbHardcoreEditionCommand extends Command {
constructor(client) {
super(client, {
name: 'ib-hardcore-edition',
aliases: ['ib-hardcore', 'ib'],
group: 'games-sp',
memberName: 'ib-hardcore-edition',
description: 'Responds with the download link for Ib: Hardcore Edition.'
});
}
run(msg) {
return msg.say('https://drive.google.com/file/d/1RHDvI8RthElngagvwu-GXUN69-oHsUBO/view?usp=sharing');
}
};