Whenever you hover over any token, if the scene contains another token that does not have an actor associated with it (represented actor = none, link actor data false), an error message is thrown into the console.
The culprit is this line (around line 420):
let token = canvas.tokens.placeables.find(t => t.actor._id === character._id)
It should probably be fixed, to become:
let token = canvas.tokens.placeables.find(t => t.actor && t.actor._id === character._id)
Whenever you hover over any token, if the scene contains another token that does not have an actor associated with it (represented actor = none, link actor data false), an error message is thrown into the console.
The culprit is this line (around line 420):
It should probably be fixed, to become:
Similarly: