Skip to content

Commit

Permalink
Merge pull request #118 from kandashi/0.1.09
Browse files Browse the repository at this point in the history
Fixes
  • Loading branch information
kandashi authored Aug 25, 2021
2 parents d9327fe + acc57a6 commit 220c160
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
5 changes: 4 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,7 @@

## 0.1.08
- Fixes for SWADE system
- Fixes for polymorphing in dnd5e
- Fixes for polymorphing in dnd5e

## 0.1.09
- Fixed issue with polymorphing, changing image or size outside combat
1 change: 1 addition & 0 deletions src/nextUp.js
Original file line number Diff line number Diff line change
Expand Up @@ -267,6 +267,7 @@ Hooks.once('ready', () => {

Hooks.on("preUpdateToken", (token, update) => {
if ("height" in update || "width" in update || "img" in update) {
if(!token.inCombat) return;
let markerToken = token.object?.children.find(i => i.NUMaker)
TweenMax.killTweensOf(token.object?.children);
Hooks.once("updateToken", async (token, update) => {
Expand Down

0 comments on commit 220c160

Please sign in to comment.