Skip to content

1.6.2

Compare
Choose a tag to compare
@PwQt PwQt released this 22 Feb 16:42
· 266 commits to master since this release
e0bd1e5

What's Changed

  • Brazilian Portuguese Translation by @Kharmans in #68
  • 63 bug effect not applying on a token from magic item spell by @PwQt in #69

New Contributors

Full Changelog: 1.6.1.1...1.6.2

Tooltips fix:

If you don't have any tooltips in DND 3.0+ please run following macro in-game:

for (const a of game.actors) {
  const magicitems = a.items.filter(i => i.flags?.magicitems?.spells?.[0]?.id);
  for (const mi of magicitems) {
    const miFlag = mi.flags.magicitems;

    Object.entries(miFlag.spells).forEach(([key, value]) => {
      if(!value.uuid) {
        value.uuid = `Item.${value.id}`;
      }
    });
    mi.update({flags: {magicitems: miFlag}});
  }
}```