Skip to content

Commit

Permalink
6.0.63
Browse files Browse the repository at this point in the history
  • Loading branch information
MrPrimate committed Jan 16, 2025
1 parent c8db471 commit 067ee34
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# Next Up
# 6.0.63

- Misty Step DDB Simple Macro.
- Hunter's Mark, Hex, Ice Knife, Fire Shield, Flesh to Stone, Sneak Attack, Thunderous Smite, Spirit Shroud, Branding Smite, Silence, and Heroism Midi automations for v4.
- Hunter's Mark, Hex, Ice Knife, Fire Shield, Flesh to Stone, Sneak Attack, Thunderous Smite, Spirit Shroud, Branding Smite, Silence, Grease and Heroism Midi automations for v4.
- Numerous spell fixes and tweaks.
- Psychic Blade Bonus attack did not include damage mod.
- Support for new Beta CPR API for improved matching.
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "ddb-importer",
"version": "6.0.62",
"version": "6.0.63",
"author": "MrPrimate",
"description": "Foundry VTT module for integrating D&D Beyond content.",
"private": true,
Expand Down
2 changes: 1 addition & 1 deletion src/muncher/items.js
Original file line number Diff line number Diff line change
Expand Up @@ -251,7 +251,7 @@ export async function parseItems({ useSourceFilter = true, ids = [], deleteBefor
const sourceFilter = (ids === null || ids.length === 0) && useSourceFilter;
const raw = await getItemData({ useSourceFilter: sourceFilter, ids });

await game.settings.set(SETTINGS.MODULE_ID, "generic-items", Array.from(CONFIG.DDBI.GENERIC_EQUIPMENT))
await game.settings.set(SETTINGS.MODULE_ID, "generic-items", Array.from(CONFIG.DDBI.GENERIC_EQUIPMENT));

const characterInventory = getCharacterInventory(raw.items, raw.extra);
const results = await generateImportItems(characterInventory, utils.munchNote, raw.spells);
Expand Down

0 comments on commit 067ee34

Please sign in to comment.