Skip to content
This repository has been archived by the owner on Jan 18, 2022. It is now read-only.

Commit

Permalink
0.98.4
Browse files Browse the repository at this point in the history
  • Loading branch information
Rughalt committed Dec 14, 2021
1 parent dbf4f0f commit b60228d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion module/item/entity.js
Original file line number Diff line number Diff line change
Expand Up @@ -509,7 +509,7 @@ export class ItemPF extends Item {
console.log('Should be true/false, is true true', data, this.data.data.active)

for (var key in expandedData?.data?.customAttributes) {
if (data[`data.customAttributes.-=${key}`] == null) continue;
if (data[`data.customAttributes.-=${key}`] === null) continue;
if (expandedData.data.customAttributes.hasOwnProperty(key)) {
let customAttribute = expandedData.data.customAttributes[key];
let addedAttributes = new Set()
Expand Down
2 changes: 1 addition & 1 deletion system.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "D35E",
"title": "3.5e SRD",
"description": "Implementation of 3.5 edition System Reference Document for Foundry VTT. Aiming to provide 100% SRD coverage.",
"version": "0.98.2",
"version": "0.98.4",
"author": "Rughalt",
"templateVersion": 2,
"scripts": [],
Expand Down

0 comments on commit b60228d

Please sign in to comment.