Skip to content

Commit

Permalink
fix anyOf for some systems
Browse files Browse the repository at this point in the history
  • Loading branch information
AngryBeaver committed Sep 27, 2023
1 parent c0ca2a5 commit 5ca5d8e
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 4 deletions.
2 changes: 2 additions & 0 deletions changelog.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
# Changelog
## 3.2.x simple or
## 3.2.4
- fix anyOf: has not used bsa-x implementation was broken on some systems.
## 3.2.3
- some reported module incompatibility fixes
## 3.2.2
Expand Down
2 changes: 1 addition & 1 deletion module.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"title": "Beaver's Crafting Module",
"description": "A Module for not only Crafting. But also Tracking any activities, Skill challenges, Quest and Progress, Faction reputation and more",
"id": "beavers-crafting",
"version": "3.2.3",
"version": "3.2.4",
"authors": [
{
"name": "angryBeaver",
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "beavers-crafting",
"title": "Beaver's Crafting",
"version": "3.2.3",
"version": "3.2.4",
"description": "Crafting",
"#devDir": "C:\\Users\\Riess\\AppData\\Local\\FoundryVTT\\Data\\modules",
"#devDir": "C:\\data\\Data\\modules",
Expand Down
3 changes: 1 addition & 2 deletions src/apps/AnyOfSheet.ts
Original file line number Diff line number Diff line change
Expand Up @@ -39,8 +39,7 @@ export class AnyOfSheet {
return;
}
this.anyOfElement = $('<div class="beavers-crafting"></div>');
html.find(".sheet-body").empty();
html.find(".sheet-body").append(this.anyOfElement);
beaversSystemInterface.itemSheetReplaceContent(this.app,html,this.anyOfElement);
this.render();
}

Expand Down

0 comments on commit 5ca5d8e

Please sign in to comment.