diff --git a/README.md b/README.md index e5c4650..99b0221 100644 --- a/README.md +++ b/README.md @@ -1,7 +1,9 @@ -# Old School Essentials System for Foundry VTT +# Old School Essentials System for Foundry VTT (Unofficial) +All the features you need to play Old School Essentials or B/X Games in Foundry VTT. ## Installation -You can now find this Foundry VTT game system within Foundry VTT in the system browser. +You can find this Foundry VTT game system within Foundry VTT in the system browser. You could also download the latest archive in the package folder, or use the manifest link below.\ +https://gitlab.com/mesfoliesludiques/foundryvtt-ose/-/raw/master/src/system.json ## License This Foundry VTT system requires Old-School Essentials Core Rules that you can find [here](https://necroticgnome.com). @@ -11,7 +13,7 @@ Old-School Essentials is a trademark of Necrotic Gnome.\ The trademark and Old-School Essentials logo are used with permission of Necrotic Gnome, under license. ## Contributions -This system is currently in Beta. +Any feedback is deeply appreciated. Please issue [tickets](https://gitlab.com/mesfoliesludiques/foundryvtt-ose/-/boards).\ Feel free to grab a TO DO issue from the gitlab board. You can then do a merge request on the `development` branch. [![ko-fi](https://www.ko-fi.com/img/githubbutton_sm.svg)](https://ko-fi.com/H2H21WMKA) \ No newline at end of file diff --git a/src/module/item/entity.js b/src/module/item/entity.js index a6baa55..d01a972 100644 --- a/src/module/item/entity.js +++ b/src/module/item/entity.js @@ -172,7 +172,7 @@ export class OseItem extends Item { case "ability": let roll = ""; roll += data.roll ? data.roll : ""; - roll += data.rollType ? CONFIG.OSE.roll_type[data.rollType] : ""; + roll += data.rollTarget ? CONFIG.OSE.roll_type[data.rollType] : ""; roll += data.rollTarget ? data.rollTarget : ""; return `${formatTag(data.requirements)}${formatTag(roll)}`; }