mirror of
https://github.com/arthur-pbty/xiao.git
synced 2026-06-03 23:36:43 +02:00
18 lines
496 B
JavaScript
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');
|
|
}
|
|
};
|