Skip to content

Commit

Permalink
feat: format changes
Browse files Browse the repository at this point in the history
  • Loading branch information
AstreaTSS committed Jan 19, 2025
1 parent d932640 commit d8b60a4
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion common/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -193,7 +193,7 @@ def resolved(self) -> bool:
def base_display(self, nickname: str | None = None) -> str:
display = display_gamertag(self.xuid, self.gamertag, nickname)
if self.device_emoji:
display += f" ({self.device_emoji})"
display += f" {self.device_emoji}"
return display

def display(self, nickname: str | None = None) -> str:
Expand Down
4 changes: 2 additions & 2 deletions exts/pl_event_handling.py
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ async def on_live_playerlist_send(
timestamp=ipy.Timestamp.fromdatetime(event.timestamp),
)
base_embed.set_footer(
f"{len(self.bot.online_cache[int(event.realm_id)])} players online as of"
f"{len(self.bot.online_cache[int(event.realm_id)])} players online"
)

for guild_id in self.bot.live_playerlist_store[event.realm_id].copy():
Expand Down Expand Up @@ -260,7 +260,7 @@ async def realm_down(self, event: pl_events.RealmDown) -> None:
title="Realm Offline",
description=(
"The bot has detected that the Realm has gone offline (or that all"
" users have left it)."
" users have left the Realm)."
),
timestamp=ipy.Timestamp.fromdatetime(event.timestamp),
color=ipy.RoleColors.YELLOW,
Expand Down

0 comments on commit d8b60a4

Please sign in to comment.