We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2c03baa commit 29e473eCopy full SHA for 29e473e
script/actor/vaesen.js
@@ -190,7 +190,7 @@ export class VaesenActor extends Actor {
190
async _handleItem(document, userId, textType) {
191
const actorChanged = this;
192
// if we are not dealing with a player or headquarter, we don't want to log the changes
193
- if (actorChanged.type != "player" && actorChanged.type != "headquarter") return;
+ if (actorChanged.type != "player" || actorChanged.type != "headquarter") return;
194
const byText = game.i18n.localize("CHANGELOG.BY");
195
const atText = game.i18n.localize("CHANGELOG.AT");
196
const dateChanged = new Date().toLocaleString();
0 commit comments