From 82c7508517ed2f5612cfe3a8bfe512da928337fb Mon Sep 17 00:00:00 2001 From: Funky Waddle Date: Mon, 23 Jun 2025 09:03:54 -0500 Subject: [PATCH] Modify TwitchGameNotificationEmbed tag field to 5 tags and remove inline --- embeds/TwitchGameNotificationEmbed.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/embeds/TwitchGameNotificationEmbed.py b/embeds/TwitchGameNotificationEmbed.py index 951b4aa..cc58ce1 100644 --- a/embeds/TwitchGameNotificationEmbed.py +++ b/embeds/TwitchGameNotificationEmbed.py @@ -21,7 +21,7 @@ class TwitchGameNotificationEmbed(Embed): self.add_field(name="Game", value=f"{stream_data["game_name"]}", inline=True) self.add_field(name="Viewers", value=f"{stream_data["viewer_count"]}", inline=True) tags = stream_data["tags"] - if len(tags) > 3: - tags = tags[:3] + if len(tags) > 5: + tags = tags[:5] tags.append('...') - self.add_field(name="Tags", value=f"{", ".join(tags)}") \ No newline at end of file + self.add_field(name="Tags", value=f"{", ".join(tags)}", inline=False) \ No newline at end of file