Skip to content

Commit

Permalink
use unicode separator
Browse files Browse the repository at this point in the history
  • Loading branch information
NullDev committed Mar 25, 2024
1 parent 7dd7007 commit 6414c3f
Show file tree
Hide file tree
Showing 8 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion src/commands/user/ask.js
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ export default {

const embedStruct = {
color: defaults.embed_color,
title: ":mag: Wolfram Alpha",
title: ":mag:Wolfram Alpha",
url: `https://www.wolframalpha.com/input/?i=${encodeURIComponent(String(userInput?.value))}`,
footer: {
text: `Requested by ${interaction.user.displayName ?? interaction.user.tag}`,
Expand Down
2 changes: 1 addition & 1 deletion src/commands/user/best.js
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ export default {
const text = await __("replies.best", guildsBest)(interaction.guildId);
const embed = {
color: defaults.embed_color,
title: ":crown: Highscore",
title: ":crown:Highscore",
description: ":heavy_minus_sign::heavy_minus_sign::heavy_minus_sign: \n" + text + "\n:heavy_minus_sign::heavy_minus_sign::heavy_minus_sign:",
footer: {
text: `Requested by ${interaction.user.displayName ?? interaction.user.tag}`,
Expand Down
2 changes: 1 addition & 1 deletion src/commands/user/global-stats.js
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ export default {

const embed = {
color: defaults.embed_color,
title: ":bar_chart: Global Stats",
title: ":bar_chart:Global Stats",
description: ":heavy_minus_sign::heavy_minus_sign::heavy_minus_sign: \n" + txt + "\n:heavy_minus_sign::heavy_minus_sign::heavy_minus_sign:",
footer: {
text: `Requested by ${interaction.user.displayName ?? interaction.user.tag}`,
Expand Down
2 changes: 1 addition & 1 deletion src/commands/user/math-fact.js
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ export default {
async execute(interaction){
const embed = {
color: defaults.embed_color,
title: ":abacus: Random Math Fact",
title: ":abacus:Random Math Fact",
description: ":heavy_minus_sign::heavy_minus_sign::heavy_minus_sign: \n" + getRandomMathFact() + "\n:heavy_minus_sign::heavy_minus_sign::heavy_minus_sign:",
footer: {
text: `Requested by ${interaction.user.displayName ?? interaction.user.tag}`,
Expand Down
2 changes: 1 addition & 1 deletion src/commands/user/stats.js
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ export default {

const embed = {
color: defaults.embed_color,
title: ":bar_chart: " + title,
title: ":bar_chart:" + title,
description: ":heavy_minus_sign::heavy_minus_sign::heavy_minus_sign: \n" + stats + "\n:heavy_minus_sign::heavy_minus_sign::heavy_minus_sign:",
footer: {
text: `Requested by ${interaction.user.displayName ?? interaction.user.tag}`,
Expand Down
2 changes: 1 addition & 1 deletion src/commands/user/vote.js
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ export default {
async execute(interaction){
const embed = {
color: defaults.embed_color,
title: ":heart: Voting",
title: ":heart:Voting",
description: (await __("replies.vote.thank_you")(interaction.guildId)) + " :) \n\n<https://discordbotlist.com/bots/arithmetica>\n<https://top.gg/bot/1108279646165942363>",
footer: {
text: await __("replies.vote.rewards")(interaction.guildId),
Expand Down
2 changes: 1 addition & 1 deletion src/service/codeExecution.js
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ const executeCode = async function(interaction){

const embed = {
color: defaults.embed_color,
title: ":computer: Code Output (" + r.language + " v" + r.version + ")",
title: ":computer:Code Output (" + r.language + " v" + r.version + ")",
description: "Input:\n```" + language.language + "\n" + code + "\n```\nOutput:\n```\n" + (r.run.output || "No Output") + "\n```",
footer: {
text: `Requested by ${interaction.user.displayName ?? interaction.user.tag}`,
Expand Down
2 changes: 1 addition & 1 deletion src/service/voteHandler.js
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ const registerVote = async function(client, user){
if (dmChannel){
const embed = {
color: defaults.embed_color,
title: ":heart: Voting",
title: ":heart:Voting",
description: "Thank you for your vote! :)\n\nHave a random math fact:\n" + getRandomMathFact(),
};

Expand Down

0 comments on commit 6414c3f

Please sign in to comment.