Skip to content

Commit

Permalink
fix: corrected issue where perception was showing persuasion instead
Browse files Browse the repository at this point in the history
fix: corrected issue where perception was showing persuasion instead
  • Loading branch information
EddieDover committed Oct 7, 2023
2 parents 16e47e0 + f04fa9b commit ad5e0e3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions module/theater-of-the-mind.js
Expand Up @@ -21,7 +21,7 @@ const getPlayerData = () => {
const ac = userSys.attributes.ac.value;

const passives = {
per: userSys.skills.per.passive,
prc: userSys.skills.prc.passive,
inv: userSys.skills.inv.passive,
ins: userSys.skills.ins.passive,
};
Expand Down Expand Up @@ -132,7 +132,7 @@ const convertPlayerDataToTable = () => {
player.stats[stat].mod
}</td>`;
}
table += `<td>${player.passives.per}</td>`;
table += `<td>${player.passives.prc}</td>`;
table += `<td>${player.passives.ins}</td>`;
table += `</tr>`;
});
Expand Down

0 comments on commit ad5e0e3

Please sign in to comment.