Skip to content

Commit

Permalink
Minor tweaks
Browse files Browse the repository at this point in the history
  • Loading branch information
Toon324 committed Jul 12, 2020
1 parent 41328ca commit 918d478
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion module.json
Original file line number Diff line number Diff line change
Expand Up @@ -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 <[email protected]>",
Expand Down
2 changes: 1 addition & 1 deletion tabbed-chatlog.js
Original file line number Diff line number Diff line change
Expand Up @@ -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();
}
Expand Down

0 comments on commit 918d478

Please sign in to comment.