Skip to content

Commit

Permalink
Change line ending char for mobile view
Browse files Browse the repository at this point in the history
  • Loading branch information
Ed Morgan committed Oct 3, 2024
1 parent 8620419 commit b30555f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/features/raid-bots/bot-embed.ts
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ export const refreshBotEmbed = async () => {
bot.currentPilot ? "~~" : ""
} ${bot.name} (${bot.level} ${bot.class}) - ${bot.location} ${
bot.currentPilot ? "~~" : ""
} ${bot.currentPilot ? "- " + bot.currentPilot : ""}\n`;
} ${bot.currentPilot ? "- " + bot.currentPilot : ""}\u200B\n`;
if (botString.length + botRow.length > 3000) {
botMessages.push(botString);
botString = "";
Expand Down

0 comments on commit b30555f

Please sign in to comment.