Skip to content

Commit 616b083

Browse files
committed
fix: npc weapon and armor rolls were not set up correctly
1 parent c1134f2 commit 616b083

File tree

3 files changed

+7
-3
lines changed

3 files changed

+7
-3
lines changed

Diff for: README.md

+4
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,10 @@ This system provides character sheets and items for your play, if you would lik
2929

3030

3131
## Release Notes
32+
v6.0.1
33+
- 🐛 Fix: NPC sheets were not rolling weapons
34+
- 🐛 Fix: NPC sheets were not rolling armor
35+
3236
v6.0.0
3337
- Feature: Updated to latest version of Year Zero Universal Roller (YZUR)
3438
- Removed: This version of the Vaesen system requires Foundry VTT v12 or higher, this gives us a clean slate and allows us to fix all the deprecation warnings!

Diff for: model/npc.hbs

+2-2
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@
7474
>
7575
<div class="flex row space-between grow full">
7676
<img
77-
class="icon"
77+
class="icon armor-roll"
7878
src="{{item.img}}"
7979
title="{{item.name}}"
8080
height="20"
@@ -124,7 +124,7 @@
124124
>
125125
<div class="flex row space-between grow full">
126126
<img
127-
class="icon"
127+
class="icon weapon-roll"
128128
src="{{item.img}}"
129129
title="{{item.name}}"
130130
height="20"

Diff for: system.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"title": "Vaesen",
33
"description": "Nordic horror role-playing",
4-
"version": "6.0.0",
4+
"version": "6.0.1",
55
"esmodules": [
66
"script/hooks.js"
77
],

0 commit comments

Comments
 (0)