Skip to content

Commit a1a886b

Browse files
authored
Merge pull request #43 from orffen/r9
R9
2 parents 857d886 + b207715 commit a1a886b

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Basic Fantasy RPG for FoundryVTT
22

3-
This is the [Basic Fantasy RPG](https://www.basicfantasy.org/) system for FoundryVTT. Please also see the [companium compendium module](https://github.com/Stew-rt/basicfantasyrpg-corerules-en), which contains items, spells, monsters etc. for easy use with the system.
3+
This is the [Basic Fantasy RPG](https://www.basicfantasy.org/) system for FoundryVTT. Please also see the [companion compendium module](https://github.com/Stew-rt/basicfantasyrpg-corerules-en), which contains items, spells, monsters etc. for easy use with the system.
44

55
## Installation
66

module/documents/actor.mjs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -159,7 +159,7 @@ export class BasicFantasyRPGActor extends Actor {
159159
* Prepare character roll data.
160160
*/
161161
_getCharacterRollData(data) {
162-
if (this.system.type !== 'character') return;
162+
if (this.type !== 'character') return;
163163

164164
// Copy the ability scores to the top level, so that rolls can use
165165
// formulas like `@str.bonus + 4`.
@@ -179,7 +179,7 @@ export class BasicFantasyRPGActor extends Actor {
179179
* Prepare NPC roll data.
180180
*/
181181
_getMonsterRollData(data) {
182-
if (this.system.type !== 'monster') return;
182+
if (this.type !== 'monster') return;
183183

184184
// Process additional NPC data here.
185185

system.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"id": "basicfantasyrpg",
33
"title": "Basic Fantasy RPG",
44
"description": "The Basic Fantasy RPG system for FoundryVTT!",
5-
"version": "r8",
5+
"version": "r9",
66
"compatibility": {
77
"minimum": "10",
88
"verified": "10",
@@ -32,6 +32,6 @@
3232
"secondaryTokenAttribute": null,
3333
"url": "https://github.com/orffen/basicfantasyrpg",
3434
"manifest": "https://raw.githubusercontent.com/orffen/basicfantasyrpg/main/system.json",
35-
"download": "https://github.com/orffen/basicfantasyrpg/archive/refs/tags/r8.zip",
35+
"download": "https://github.com/orffen/basicfantasyrpg/archive/refs/tags/r9.zip",
3636
"license": "LICENSE.txt"
3737
}

0 commit comments

Comments
 (0)