Skip to content
This repository was archived by the owner on Aug 10, 2025. It is now read-only.

Commit 510ab8c

Browse files
committed
add 5e dependency to title
1 parent 96be7bf commit 510ab8c

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

module.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
{
22
"id": "scriptable-items",
3-
"title": "Scriptable Items",
3+
"title": "Scriptable Items for dnd5e",
44
"description": "Allows you to attach one or more JS scripts to an item, which are triggered by user selectable triggers.",
5-
"version": "0.1.0",
5+
"version": "AUTOMATIC",
66
"library": "false",
77
"manifestPlusVersion": "1.2.0",
88
"compatibility": {

scripts/scriptable-items.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ Hooks.on("getItemSheetHeaderButtons", (app, buttons) => {
2020
class: MODULE_ID,
2121
icon: "fas fa-play",
2222
label: getSetting(SETTING.SHOW_HEADER_BUTTON_LABEL)
23-
? game.modules.get(MODULE_ID).title
23+
? "Scriptable Items"
2424
: undefined,
2525
onclick: () => new ScriptsOverview(item).render(true),
2626
});

0 commit comments

Comments
 (0)