Skip to content

Commit

Permalink
Fix max willpower attribute value
Browse files Browse the repository at this point in the history
  • Loading branch information
Matthieu MARTIN committed Dec 6, 2024
1 parent a7ca926 commit 49d9ea1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion resources/js/Pages/Character/Partials/Status/Willpower.vue
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ const willPowerAttributes = computed(() => {
});
});
const maxWillpowerPoints = willPowerAttributes.value[2];
const maxWillpowerPoints = willPowerAttributes.value[2].pivot.attribute_value;
const showDescription = async (entity, id) => {
await modalStore.getDescription(entity, id);
Expand Down

0 comments on commit 49d9ea1

Please sign in to comment.