Skip to content

Commit

Permalink
fix: Wrong actor type
Browse files Browse the repository at this point in the history
  • Loading branch information
xdy committed Aug 16, 2020
1 parent ab50b10 commit a9a13f8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/twodsix.ts
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ Hooks.on('preCreateActor', async (actor, dir) => {
let link = true;
let disposition = 1;

if (actor.type !== 'character') {
if (actor.type !== 'traveller') {
link = false;
disposition = 0;
}
Expand Down

0 comments on commit a9a13f8

Please sign in to comment.