Skip to content

Commit

Permalink
#3 - Fix issue with displaying FAge stats
Browse files Browse the repository at this point in the history
  • Loading branch information
valentine195 committed Jul 27, 2021
1 parent 7b3e1c0 commit b47fb09
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion manifest.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"id": "obsidian-5e-statblocks",
"name": "5e Statblocks",
"version": "1.5.0",
"version": "1.5.1",
"description": "Create 5e styled statblocks in Obsidian.md",
"minAppVersion": "0.12.0",
"author": "Jeremy Valentine",
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "obsidian-5e-statblocks",
"version": "1.5.0",
"version": "1.5.1",
"description": "Create 5e styled statblocks in Obsidian.md",
"main": "main.js",
"scripts": {
Expand Down
2 changes: 1 addition & 1 deletion src/renderer/statblock.ts
Original file line number Diff line number Diff line change
Expand Up @@ -338,7 +338,7 @@ export default class StatBlockRenderer extends MarkdownRenderChild {
el.createEl("strong", { text: `${stat}` });

el.createDiv({
text: `${stats[index]}` /* (${getMod(stats[index])}) */
text: `${stats[index + 5]}` /* (${getMod(stats[index])}) */
});
}
);
Expand Down
2 changes: 1 addition & 1 deletion versions.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,5 @@
"1.1.0": "0.12.0",
"1.2.0": "0.12.0",
"1.3.1": "0.12.0",
"1.5.0": "0.12.0"
"1.5.1": "0.12.0"
}

0 comments on commit b47fb09

Please sign in to comment.