diff --git a/actions/Shoutout.py b/actions/Shoutout.py index b4a363b..3077b2a 100644 --- a/actions/Shoutout.py +++ b/actions/Shoutout.py @@ -13,15 +13,15 @@ class Icons(StrEnum): - CHAT = "chat" + SHOUTOUT = "shoutout" class Shoutout(TwitchCore): def __init__(self, *args, **kwargs) -> None: super().__init__(*args, **kwargs) - self.icon_keys = [Icons.CHAT] - self.current_icon = self.get_icon(Icons.CHAT) - self.icon_name = Icons.CHAT + self.icon_keys = [Icons.SHOUTOUT] + self.current_icon = self.get_icon(Icons.SHOUTOUT) + self.icon_name = Icons.SHOUTOUT self.has_configuration = True def create_event_assigners(self) -> None: diff --git a/assets/shoutout.png b/assets/shoutout.png new file mode 100644 index 0000000..9f1fa50 Binary files /dev/null and b/assets/shoutout.png differ diff --git a/main.py b/main.py index 1fe78e6..466e698 100644 --- a/main.py +++ b/main.py @@ -54,6 +54,7 @@ def _add_icons(self) -> None: self.add_icon("slow_mode", self.get_asset_path("slow.png")) self.add_icon("money", self.get_asset_path("money.png")) self.add_icon("delay", self.get_asset_path("delay.png")) + self.add_icon("shoutout", self.get_asset_path("shoutout.png")) def _add_colors(self) -> None: self.add_color("default", [0, 0, 0, 0]) diff --git a/manifest.json b/manifest.json index bb04f93..8d938a5 100644 --- a/manifest.json +++ b/manifest.json @@ -1,5 +1,5 @@ { - "version": "1.8.0", + "version": "1.8.1", "thumbnail": "store/thumbnail.png", "id": "com_imdevinc_StreamControllerTwitchPlugin", "name": "Twitch Integration",