Skip to content

Commit

Permalink
0.39.1
Browse files Browse the repository at this point in the history
  • Loading branch information
reonZ committed Apr 21, 2024
1 parent 3d9fe1a commit c755510
Show file tree
Hide file tree
Showing 4 changed files with 18 additions and 14 deletions.
12 changes: 8 additions & 4 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
# 0.39.1

- fixed `off-guard` not applying when the attacker is hidden from its target

# 0.39.0

- added a third `30ft. burst` template to the `seek` action
Expand All @@ -23,11 +27,11 @@
- you can now register your own wall creature calculation function (it needs to be registered after the foundry `init` hook)

```js
game.modules.get('pf2e-perception').custom.getCreatureCover = (
game.modules.get("pf2e-perception").custom.getCreatureCover = (
originToken,
targetToken,
{ perception: PerceptionRules, debug = false }
) => 'none' | 'lesser' | 'standard' | 'greater' | 'greater-prone'
) => "none" | "lesser" | "standard" | "greater" | "greater-prone";
```

# 0.35.1
Expand Down Expand Up @@ -155,8 +159,8 @@ game.modules.get('pf2e-perception').custom.getCreatureCover = (
- you can now register your own wall cover calculation function:

```js
game.modules.get('pf2e-perception').custom.getWallCover = (originToken, targetToken) =>
'none' | 'lesser' | 'standard' | 'greater' | 'greater-prone'
game.modules.get("pf2e-perception").custom.getWallCover = (originToken, targetToken) =>
"none" | "lesser" | "standard" | "greater" | "greater-prone";
```

# 0.20.2
Expand Down
4 changes: 2 additions & 2 deletions module.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,12 +19,12 @@
"minimum": "11.315",
"verified": "11"
},
"version": "0.39.0",
"version": "0.39.1",
"manifestPlusVersion": "1.2.0",
"url": "https://github.com/reonZ/pf2e-perception",
"readme": "https://github.com/reonZ/pf2e-perception/blob/master/README.md",
"manifest": "https://raw.githubusercontent.com/reonZ/pf2e-perception/master/module.json",
"download": "https://github.com/reonZ/pf2e-perception/releases/download/0.39.0/module.zip",
"download": "https://github.com/reonZ/pf2e-perception/releases/download/0.39.1/module.zip",
"changelog": "https://github.com/reonZ/pf2e-perception/blob/master/CHANGELOG.md",
"bugs": "https://github.com/reonZ/pf2e-perception/issues",
"styles": [
Expand Down
12 changes: 6 additions & 6 deletions scripts/main.js

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions scripts/main.js.map

Large diffs are not rendered by default.

0 comments on commit c755510

Please sign in to comment.