Skip to content

Commit b47fb09

Browse files
committed
#3 - Fix issue with displaying FAge stats
1 parent 7b3e1c0 commit b47fb09

4 files changed

Lines changed: 4 additions & 4 deletions

File tree

manifest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"id": "obsidian-5e-statblocks",
33
"name": "5e Statblocks",
4-
"version": "1.5.0",
4+
"version": "1.5.1",
55
"description": "Create 5e styled statblocks in Obsidian.md",
66
"minAppVersion": "0.12.0",
77
"author": "Jeremy Valentine",

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "obsidian-5e-statblocks",
3-
"version": "1.5.0",
3+
"version": "1.5.1",
44
"description": "Create 5e styled statblocks in Obsidian.md",
55
"main": "main.js",
66
"scripts": {

src/renderer/statblock.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -338,7 +338,7 @@ export default class StatBlockRenderer extends MarkdownRenderChild {
338338
el.createEl("strong", { text: `${stat}` });
339339

340340
el.createDiv({
341-
text: `${stats[index]}` /* (${getMod(stats[index])}) */
341+
text: `${stats[index + 5]}` /* (${getMod(stats[index])}) */
342342
});
343343
}
344344
);

versions.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,5 +4,5 @@
44
"1.1.0": "0.12.0",
55
"1.2.0": "0.12.0",
66
"1.3.1": "0.12.0",
7-
"1.5.0": "0.12.0"
7+
"1.5.1": "0.12.0"
88
}

0 commit comments

Comments
 (0)