Skip to content

Commit

Permalink
Fix attunement
Browse files Browse the repository at this point in the history
  • Loading branch information
rrgeorge committed Apr 26, 2022
1 parent 8423f73 commit ec17bab
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ddb.js
Original file line number Diff line number Diff line change
Expand Up @@ -967,7 +967,7 @@ class DDB {
if (item.canAttune) {
let attunement = "requires attunement"
if (item.attunementDescription) attunement += ` by a ${item.attunementDescription}`
itemEntry._content.push({attune: attunement})
itemEntry._content.push({attunement: attunement})
}
let type = ((item.baseTypeId==this.ruledata.baseTypeArmorId)? "AA" :
(item.baseTypeId==this.ruledata.baseTypeWeaponId)? "WW" :
Expand Down

0 comments on commit ec17bab

Please sign in to comment.