From 918d47871cbcb6b2a2daa2602cf2677588520d4e Mon Sep 17 00:00:00 2001 From: Cody Swendrowski Date: Sun, 12 Jul 2020 13:43:50 -0500 Subject: [PATCH] Minor tweaks --- module.json | 2 +- tabbed-chatlog.js | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/module.json b/module.json index b4815c6..5b56d9e 100644 --- a/module.json +++ b/module.json @@ -2,7 +2,7 @@ "name": "tabbed-chatlog", "title": "Tabbed Chatlog", "description": "Splits the Chatlog into In Character (per scene), Rolls (per scene), and Out of Character (global).", - "version": "1.1.0", + "version": "1.1.1", "minimumCoreVersion": "0.6.2", "compatibleCoreVersion": "0.6.0", "author": "Cody Swendrowski ", diff --git a/tabbed-chatlog.js b/tabbed-chatlog.js index 7dcdf1c..c897ce0 100644 --- a/tabbed-chatlog.js +++ b/tabbed-chatlog.js @@ -135,7 +135,7 @@ Hooks.on("createChatMessage", (chatMessage, content) => { } } - if (chatMessage.data.type == 5) { + if (chatMessage.data.type == 0 || chatMessage.data.type == 5) { if (currentTab != "rolls" && sceneMatches) { $("#rollsNotification").show(); }