Skip to content

Commit 6166220

Browse files
committed
Release 1.0.14
1 parent cfe4a25 commit 6166220

3 files changed

Lines changed: 10 additions & 2 deletions

File tree

release-notes/1.0.14.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
## Downloads
2+
_Manifest URL_: https://asacolips-artifacts.s3.amazonaws.com/pbta/1.0.14/system.json
3+
4+
## Compatible Foundry Versions
5+
![Foundry v12](https://img.shields.io/badge/Foundry-v12-green) ![Foundry v12](https://img.shields.io/badge/Foundry-v12-orange)
6+
7+
## Fixes
8+
- Fixed not being able to open the Playbook's sheet from the Actor Sheet by clicking the eye.

src/module/applications/item/playbook-sheet.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ export default class PlaybookSheet extends PbtaItemSheet {
3434
});
3535
context.choicesByAdvancement = choicesByAdvancement;
3636
for (let [k, v] of Object.entries(context.system.attributes)) {
37-
if (["Details", "LongText"].includes(v.type)) {
37+
if (["Details", "LongText"].includes(v.type) && context.system.attributes[k].choices) {
3838
for (const choice of context.system.attributes[k].choices) {
3939
choice.enriched = await TextEditor.enrichHTML(choice.value ?? "", context.enrichmentOptions);
4040
}

src/yaml/system.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ name: pbta
22
id: pbta
33
title: Powered by the Apocalypse
44
description: Run games for any PbtA system in Foundry VTT!
5-
version: "1.0.13"
5+
version: "1.0.14"
66
compatibility:
77
minimum: "12"
88
verified: "12"

0 commit comments

Comments
 (0)