mirror of
https://github.com/arthur-pbty/xiao.git
synced 2026-06-03 23:36:43 +02:00
Cave Command
This commit is contained in:
@@ -227,7 +227,7 @@ in the appropriate channel's topic to use it.
|
||||
|
||||
## Commands
|
||||
|
||||
Total: 488
|
||||
Total: 489
|
||||
|
||||
### Utility:
|
||||
|
||||
@@ -365,6 +365,7 @@ Total: 488
|
||||
|
||||
### Single Response:
|
||||
|
||||
* **cave:** Sends a Minecraft cave that blends in with the chat.
|
||||
* **dark-light:** Determines whether you use dark or light theme.
|
||||
* **eat-pant:** Eat pant.
|
||||
* **eggs-get-laid:** Sends the ultimate roast.
|
||||
|
||||
Binary file not shown.
|
After Width: | Height: | Size: 32 KiB |
@@ -0,0 +1,19 @@
|
||||
const Command = require('../../structures/Command');
|
||||
const path = require('path');
|
||||
|
||||
module.exports = class CaveCommand extends Command {
|
||||
constructor(client) {
|
||||
super(client, {
|
||||
name: 'cave',
|
||||
aliases: ['cavern', 'mine'],
|
||||
group: 'single',
|
||||
memberName: 'cave',
|
||||
description: 'Sends a Minecraft cave that blends in with the chat.',
|
||||
clientPermissions: ['ATTACH_FILES']
|
||||
});
|
||||
}
|
||||
|
||||
run(msg) {
|
||||
return msg.say({ files: [path.join(__dirname, '..', '..', 'assets', 'images', 'cave.png')] });
|
||||
}
|
||||
};
|
||||
+1
-1
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "xiao",
|
||||
"version": "116.29.6",
|
||||
"version": "116.30.0",
|
||||
"description": "Your personal server companion.",
|
||||
"main": "Xiao.js",
|
||||
"scripts": {
|
||||
|
||||
Reference in New Issue
Block a user