diff --git a/module/actor-sheet.js b/module/actor-sheet.js
index 0537ef1..cefbf9a 100644
--- a/module/actor-sheet.js
+++ b/module/actor-sheet.js
@@ -134,12 +134,12 @@ export class SoSActorSheet extends ActorSheet {
});
html.find('.skill-label a').click((event) => {
const li = $(event.currentTarget).parents(".item");
- const skill = this.actor.get.items(li.data("item-id"));
+ const skill = this.actor.items.get(li.data("item-id"));
this.actor.rollSkill(skill);
});
html.find('.weapon-label a').click((event) => {
const li = $(event.currentTarget).parents(".item");
- const weapon = this.actor.get.items(li.data("item-id"));
+ const weapon = this.actor.items.get(li.data("item-id"));
this.actor.rollWeapon(weapon);
});
html.find('.skill-value').change((event) => {
diff --git a/templates/actor-sheet.html b/templates/actor-sheet.html
index 326846b..290a7d1 100644
--- a/templates/actor-sheet.html
+++ b/templates/actor-sheet.html
@@ -236,7 +236,7 @@
{{weapon.name}}