diff --git a/changelogs/changelog.0.99.1.md b/changelogs/changelog.0.99.1.md new file mode 100755 index 0000000..3ef4dd3 --- /dev/null +++ b/changelogs/changelog.0.99.1.md @@ -0,0 +1,11 @@ +### New Features +- Measure Template spells automatically display targets on attack cards + +### Fixes +- [899](https://github.com/Rughalt/D35E/issues/899) - Allow changes to "Senses" in Buff configuration +- [898](https://github.com/Rughalt/D35E/issues/898) - Special Action 'Set' appears broken when applied to Buffs from Spells +- [897](https://github.com/Rughalt/D35E/issues/897) - Wild shape broken on v9 +- [896](https://github.com/Rughalt/D35E/issues/896) - Drag and drop from "Spell Browser" has stopped working in Foundry v9 +- [893](https://github.com/Rughalt/D35E/issues/893) - Template Icon not being removed from scene until refresh +- [890](https://github.com/Rughalt/D35E/issues/890) - Shapechange JS error (wildshape transformation) +- [887](https://github.com/Rughalt/D35E/issues/887) - Missing Ressource Bar Inputs in Token HUD \ No newline at end of file diff --git a/module/item/entity.js b/module/item/entity.js index 09562ed..9f0a4f2 100755 --- a/module/item/entity.js +++ b/module/item/entity.js @@ -1989,8 +1989,8 @@ export class ItemPF extends Item { let _template = await result.place(); if (selectedTargets.length == 0) { // We can override selevted dargets - selectedTargets = template.getTokensWithin().filter(t => t.visible || game.user.isGM); - hiddenTargets = template.getTokensWithin().filter(t => !t.visible && !game.user.isGM); + selectedTargets = template.getTokensWithin().filter(t => !t.data.hidden); + hiddenTargets = template.getTokensWithin().filter(t => t.data.hidden); } } diff --git a/system.json b/system.json index 80a6532..29370b3 100755 --- a/system.json +++ b/system.json @@ -2,7 +2,7 @@ "name": "D35E", "title": "3.5e SRD", "description": "Implementation of 3.5 edition System Reference Document for Foundry VTT. Aiming to provide 100% SRD coverage.", - "version": "0.99.0", + "version": "0.99.1", "author": "Rughalt", "templateVersion": 2, "scripts": [], diff --git a/templates/welcome-screen.html b/templates/welcome-screen.html index 8896ba4..76a823e 100644 --- a/templates/welcome-screen.html +++ b/templates/welcome-screen.html @@ -229,6 +229,22 @@

+

v0.99.1

+

New Features

+ +

Fixes

+ +

v0.99.0

Github changelist