Skip to content

Commit

Permalink
closes #216
Browse files Browse the repository at this point in the history
  • Loading branch information
Muttley committed Mar 8, 2024
1 parent f30ee9b commit 38ff12b
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
3 changes: 2 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,10 +1,11 @@
# v11.4.2

## Enhancements
- [#213] Add ability to toggle Radiation and Poison immunity on character and NPC sheets by clicking the Radiation or Poison icon in the resistance sections on character sheets.
- [#213] Add ability to toggle Radiation and Poison immunity on character and NPC sheets by clicking the Radiation or Poison icon in the resistance section character sheets.

## Bugfixes
- [#212] Missing material consumables: Asbestos, Bloatfly Gland, Blood Sac, Bloodleaf, Glowing Fungus, Hubflower, Radscorpion Stinger, Stingwing Barb
- [#216] Don't show "undefined" if an out of date Weapon Quality or Damage Effect still exists in Weapon item

---

Expand Down
4 changes: 4 additions & 0 deletions system/src/handlebars.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,8 @@ export default function registerHandlebarsHelpers() {
const effectsElements = [];

for (const key in effects) {
if (!CONFIG.FALLOUT.DAMAGE_EFFECTS.hasOwnProperty(key)) continue;

const effect = effects[key];

if (!effect.value) continue;
Expand Down Expand Up @@ -45,6 +47,8 @@ export default function registerHandlebarsHelpers() {
const qualityElements = [];

for (const key in qualities) {
if (!CONFIG.FALLOUT.WEAPON_QUALITIES.hasOwnProperty(key)) continue;

const quality = qualities[key];

if (!quality.value) continue;
Expand Down

0 comments on commit 38ff12b

Please sign in to comment.