Skip to content
This repository has been archived by the owner on Nov 11, 2024. It is now read-only.

Commit

Permalink
chore: rebranding
Browse files Browse the repository at this point in the history
  • Loading branch information
mzrtamp committed Aug 1, 2024
1 parent 2ba3b1b commit c7ed080
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion .env_example
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ MAIN_GUILD=""

#==============================================================================
# OPTIONAL - Which youtube downloader do you want to use?
# For more information, see: https://github.com/clytage/rawon/wiki/Stream-Strategy
# For more information, see: https://github.com/stegripe/rawon/wiki/Stream-Strategy
# Example: STREAM_STRATEGY="yt-dlp"
# Available: play-dl, yt-dlp
# Default: yt-dlp
Expand Down
4 changes: 2 additions & 2 deletions src/commands/developers/EvalCommand.ts
Original file line number Diff line number Diff line change
Expand Up @@ -81,11 +81,11 @@ export class EvalCommand extends BaseCommand {

private async hastebin(text: string): Promise<string> {
const result = await this.client.request
.post("https://bin.clytage.org/documents", {
.post("https://bin.stegripe.org/documents", {
body: text
})
.json<{ key: string }>();

return `https://bin.clytage.org/${result.key}`;
return `https://bin.stegripe.org/${result.key}`;
}
}
6 changes: 3 additions & 3 deletions src/commands/general/HelpCommand.ts
Original file line number Diff line number Diff line change
Expand Up @@ -33,11 +33,11 @@ export class HelpCommand extends BaseCommand {
text: i18n.__mf("commands.general.help.footerString", {
prefix: this.client.config.mainPrefix
}),
iconURL: "https://cdn.clytage.org/images/information.png"
iconURL: "https://cdn.stegripe.org/images/information.png"
});

private readonly infoEmbed = createEmbed("info").setThumbnail(
"https://cdn.clytage.org/images/question_mark.png"
"https://cdn.stegripe.org/images/question_mark.png"
);

public async execute(ctx: CommandContext): Promise<void> {
Expand Down Expand Up @@ -162,7 +162,7 @@ export class HelpCommand extends BaseCommand {
text: i18n.__mf("commands.general.help.commandUsageFooter", {
devOnly: command?.meta.devOnly === true ? "(developer-only command)" : ""
}),
iconURL: "https://cdn.clytage.org/images/information.png"
iconURL: "https://cdn.stegripe.org/images/information.png"
})
]
},
Expand Down
2 changes: 1 addition & 1 deletion src/commands/music/LyricsCommand.ts
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ export class LyricsCommand extends BaseCommand {
});
}

const albumArt = data.album_art ?? "https://cdn.clytage.org/images/icon.png";
const albumArt = data.album_art ?? "https://cdn.stegripe.org/images/icon.png";
const pages: string[] = chunk(data.lyrics ?? "", 2_048);
const embed = createEmbed("info", pages[0])
.setAuthor({
Expand Down
2 changes: 1 addition & 1 deletion src/commands/music/NowPlayingCommand.ts
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ export class NowPlayingCommand extends BaseCommand {
const song = (res?.metadata as QueueSong | undefined)?.song;

const embed = createEmbed("info", `${ctx.guild?.queue?.playing === true ? "▶" : "⏸"} **|** `).setThumbnail(
song?.thumbnail ?? "https://cdn.clytage.org/images/icon.png"
song?.thumbnail ?? "https://cdn.stegripe.org/images/icon.png"
);

const curr = Math.trunc((res?.playbackDuration ?? 0) / 1_000);
Expand Down

0 comments on commit c7ed080

Please sign in to comment.