Add more detailed copyright info

This commit is contained in:
Dragon Fire
2020-07-07 13:51:44 -04:00
parent 5e5e5e6cd4
commit 1afdc4a9cb
4 changed files with 16 additions and 2 deletions
+8
View File
@@ -13,6 +13,7 @@ Xiao is a Discord bot coded in JavaScript with
## Table of Contents
- [Copyright](#copyright)
- [Invite](#invite)
- [Permissions](#permissions)
- [Fun Information](#fun-information)
@@ -55,7 +56,14 @@ Xiao is a Discord bot coded in JavaScript with
- [Licensing](#licensing)
- [Credit](#credit)
## Copyright
- ©2017-2020 dragonfire535#8081
- Xiao Pai/Rune Factory 4: ©2012 Marvelous Inc.
- Avatar Art: ©2018 airful
## Invite
- [Home Server](https://discord.gg/mTr83zt)
- [Invite](https://discordapp.com/api/oauth2/authorize?client_id=278305350804045834&permissions=104721601&scope=bot)
+5
View File
@@ -0,0 +1,5 @@
[
"©2017-2020 dragonfire535#8081",
"Xiao Pai/Rune Factory 4: ©2012 Marvelous Inc.",
"Avatar Art: ©2018 airful"
]
+2 -1
View File
@@ -6,6 +6,7 @@ require('moment-duration-format');
const { formatNumber, embedURL } = require('../../util/Util');
const { version, dependencies } = require('../../package');
const permissions = require('../../assets/json/permissions');
const copyright = require('../../assets/json/copyright');
const { XIAO_GITHUB_REPO_USERNAME, XIAO_GITHUB_REPO_NAME } = process.env;
const source = XIAO_GITHUB_REPO_NAME && XIAO_GITHUB_REPO_USERNAME;
@@ -27,7 +28,7 @@ module.exports = class InfoCommand extends Command {
const repoURL = `https://github.com/${XIAO_GITHUB_REPO_USERNAME}/${XIAO_GITHUB_REPO_NAME}`;
const embed = new MessageEmbed()
.setColor(0x00AE86)
.setFooter('©2017-2020 dragonfire535#8081')
.setFooter(copyright.join('\n'))
.addField(' Servers', formatNumber(this.client.guilds.cache.size), true)
.addField(' Commands', formatNumber(this.client.registry.commands.size), true)
.addField(' Shards', formatNumber(this.client.options.shardCount), true)
+1 -1
View File
@@ -1,6 +1,6 @@
{
"name": "xiao",
"version": "119.12.0",
"version": "119.12.1",
"description": "Your personal server companion.",
"main": "Xiao.js",
"scripts": {