Skip to content

Commit

Permalink
Minor fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
cswendrowski committed Oct 8, 2021
1 parent 7420865 commit a2e0785
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/pf2e.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ export default class Pathfinder2E {
}

getActorSource(actor, skipDetails) {
if (actor.data.data.details.source.value && !skipDetails) {
if (actor.data.data.details.source?.value && !skipDetails) {
return actor.data.data.details.source.value;
}

Expand Down
1 change: 1 addition & 0 deletions vue/EncounterBuilder.vue
Original file line number Diff line number Diff line change
Expand Up @@ -491,6 +491,7 @@ export default {
if (game.system.id == "archmage") {
this.systemName = "thirteenth-age";
this.system = window.dungeonMoon.thirteenthAge;
this.colors.holder = "#dfd095";
this.log(true, "13th Age Loaded");
}
else if (game.system.id == "pf2e") {
Expand Down

0 comments on commit a2e0785

Please sign in to comment.