Skip to content
This repository has been archived by the owner on Nov 13, 2024. It is now read-only.

Commit

Permalink
version 3.2.17
Browse files Browse the repository at this point in the history
  • Loading branch information
p4535992 committed Apr 16, 2022
1 parent bf86293 commit 2c1ace7
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 6 deletions.
4 changes: 4 additions & 0 deletions changelog.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,8 @@

### 3.2.17

- Bug fix on the elevation method utility

### 3.2.16

- Add checker on 'isAncestor' method
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"name": "foundryvtt-mountup",
"title": "FoundryVTT Mount Up!",
"description": "Allows tokens to carry or be carried by other tokens. This is completely system agnostic, and fully customizable to fit right into your game.",
"version": "3.2.16",
"version": "3.2.17",
"scripts": {
"package": "gulp package",
"build": "gulp build && gulp link",
Expand Down
8 changes: 4 additions & 4 deletions src/module.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "foundryvtt-mountup",
"title": "FoundryVTT Mount Up!",
"description": "Allows tokens to carry or be carried by other tokens. This is completely system agnostic, and fully customizable to fit right into your game.",
"version": "3.2.16",
"version": "3.2.17",
"author": "Brunhine, p4535992",
"type": "module",
"socket": true,
Expand Down Expand Up @@ -50,9 +50,9 @@
"compatibleCoreVersion": "9",
"url": "https://github.com/p4535992/MountUp",
"manifest": "https://github.com/p4535992/MountUp/releases/latest/download/module.json",
"download": "https://github.com/p4535992/MountUp/releases/download/v3.2.16/module.zip",
"readme": "https://github.com/p4535992/MountUp/blob/v3.2.16/README.md",
"changelog": "https://github.com/p4535992/MountUp/blob/v3.2.16/changelog.md",
"download": "https://github.com/p4535992/MountUp/releases/download/v3.2.17/module.zip",
"readme": "https://github.com/p4535992/MountUp/blob/v3.2.17/README.md",
"changelog": "https://github.com/p4535992/MountUp/blob/v3.2.17/changelog.md",
"bugs": "https://github.com/p4535992/MountUp/issues",
"allowBugReporter": true,
"manifestPlusVersion": "1.2.0",
Expand Down
2 changes: 1 addition & 1 deletion src/module/lib/lib.ts
Original file line number Diff line number Diff line change
Expand Up @@ -301,7 +301,7 @@ function getElevationPlaceableObject(placeableObject: any): number {
_levels?.advancedLOS &&
(placeableObject instanceof Token || placeableObject instanceof TokenDocument)
? //@ts-ignore
_levels.getTokenLOSheight(token)
_levels.getTokenLOSheight(placeableObject)
: base.elevation ??
base.flags['levels']?.elevation ??
base.flags['levels']?.rangeBottom ??
Expand Down

0 comments on commit 2c1ace7

Please sign in to comment.