Update username

This commit is contained in:
Dragon Fire
2024-12-11 17:45:16 -05:00
parent 42e8d9ae70
commit 47c3f88481
13 changed files with 30 additions and 30 deletions
+1 -1
View File
@@ -5,7 +5,7 @@ const cheerio = require('cheerio');
const { stripIndents } = require('common-tags');
const { cleanAnilistHTML, embedURL } = require('../../util/Util');
const logos = require('../../assets/json/logos');
const ANILIST_USERNAME = process.env.ANILIST_USERNAME || 'dragonfire535';
const ANILIST_USERNAME = process.env.ANILIST_USERNAME || 'lilyissillyyy';
const searchGraphQL = stripIndents`
query ($search: String, $type: MediaType, $isAdult: Boolean) {
anime: Page (perPage: 10) {
+1 -1
View File
@@ -5,7 +5,7 @@ const cheerio = require('cheerio');
const { stripIndents } = require('common-tags');
const { cleanAnilistHTML, embedURL } = require('../../util/Util');
const logos = require('../../assets/json/logos');
const ANILIST_USERNAME = process.env.ANILIST_USERNAME || 'dragonfire535';
const ANILIST_USERNAME = process.env.ANILIST_USERNAME || 'lilyissillyyy';
const searchGraphQL = stripIndents`
query ($search: String, $type: MediaType, $isAdult: Boolean) {
anime: Page (perPage: 10) {
+1 -1
View File
@@ -3,7 +3,7 @@ const { EmbedBuilder } = require('discord.js');
const request = require('node-superfetch');
const { shorten, embedURL } = require('../../util/Util');
const { GITHUB_ACCESS_TOKEN } = process.env;
const XIAO_GITHUB_REPO_USERNAME = process.env.XIAO_GITHUB_REPO_USERNAME || 'dragonfire535';
const XIAO_GITHUB_REPO_USERNAME = process.env.XIAO_GITHUB_REPO_USERNAME || 'lilyissillyyy';
const XIAO_GITHUB_REPO_NAME = process.env.XIAO_GITHUB_REPO_NAME || 'xiao';
module.exports = class ChangelogCommand extends Command {
+1 -1
View File
@@ -26,7 +26,7 @@ module.exports = class GenerateCreditCommand extends Command {
if (!commands.size) return null;
return commands.map(c => {
const credits = c.credit
.filter(cred => cred.name !== 'Dragon Fire')
.filter(cred => cred.name !== 'Lily is Silly')
.map(cred => {
const reason = cred.reasonURL ? embedURL(cred.reason, cred.reasonURL) : cred.reason;
return `${embedURL(cred.name, cred.url)} (${reason})`;