Skip to content

Commit

Permalink
close #1755
Browse files Browse the repository at this point in the history
version numbers
  • Loading branch information
moo-man committed Sep 14, 2023
1 parent c8fd888 commit 0c14e22
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 3 deletions.
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -146,6 +146,8 @@ npm run pack

- [Forien's Armoury](https://foundryvtt.com/packages/forien-armoury) - Forien is back, and he's brought his armoury with him! Includes new features for handling damaged weapons and armour, new careers, new items, and more!

- [NPC Generator](https://foundryvtt.com/packages/wfrp4-wfrp4e-npc-generator) - Adds advanced NPC generation tools

- [Unofficial Grimoire](https://foundryvtt.com/packages/wfrp4e-unofficial-grimoire) - Adds new spells and an Elementalist and Druid career

- Fan-made Maps for [Ubersreik](https://foundryvtt.com/packages/wfrp4e-ubersreik-maps), [Enemy In Shadows](https://foundryvtt.com/packages/wfrp4e-eis-maps), [Death on the Reik](https://foundryvtt.com/packages/wfrp4e-dotr-maps), and [Power Behind The Throne](https://foundryvtt.com/packages/wfrp4e-pbth-maps)
Expand Down
2 changes: 1 addition & 1 deletion modules/item/item-wfrp4e.js
Original file line number Diff line number Diff line change
Expand Up @@ -541,7 +541,7 @@ export default class ItemWfrp4e extends Item {
data.properties.push(`<b>${game.i18n.localize("Contraction")}:</b> ${this.contraction.value}`);
data.properties.push(`<b>${game.i18n.localize("Incubation")}:</b> ${this.incubation.value} ${this.incubation.unit}`);
data.properties.push(`<b>${game.i18n.localize("Duration")}:</b> ${this.duration.value} ${this.duration.unit}`);
data.properties = data.properties.concat(this.effects.map(i => i = "<a class ='symptom-tag'><i class='fas fa-user-injured'></i> " + i.label.trim() + "</a>").join(", "));
data.properties = data.properties.concat(this.effects.map(i => i = "<a class ='symptom-tag'><i class='fas fa-user-injured'></i> " + i.name.trim() + "</a>").join(", "));
if (this.permanent.value)
data.properties.push(`<b>${game.i18n.localize("Permanent")}:</b> ${this.permanent.value}`);
return data;
Expand Down
4 changes: 2 additions & 2 deletions system.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"name": "wfrp4e",
"title": "Warhammer Fantasy Roleplay 4th Edition",
"description": "A comprehensive system for running grim and perilous games of Warhammer Fantasy Roleplay in the Foundry VTT environment.",
"version": "7.0.1",
"version": "7.0.2",
"author": "Moo Man, CatoThe1stElder",
"authors" : [
{
Expand Down Expand Up @@ -57,6 +57,6 @@
"templateVersion":3,
"socket": true,
"manifest" : "https://github.com/moo-man/WFRP4e-FoundryVTT/releases/latest/download/system.json",
"download" : "https://github.com/moo-man/WFRP4e-FoundryVTT/releases/download/7.0.1/wfrp4e.zip",
"download" : "https://github.com/moo-man/WFRP4e-FoundryVTT/releases/download/7.0.2/wfrp4e.zip",
"url" : "https://github.com/moo-man/WFRP4e-FoundryVTT"
}

0 comments on commit 0c14e22

Please sign in to comment.