Update for Foundry v10

This commit is contained in:
2022-10-15 22:29:25 +02:00
parent 2ea4eb04cb
commit e53a1b6a21
8 changed files with 35 additions and 36 deletions

View File

@@ -7,13 +7,13 @@ export function onDoorLeftClick() {
// We don't trust the event to be filled with the expected data for compatibilty with arms reach (which passes a broken event)
if (toggleSecretDoor && game.user.isGM) {
const types = CONST.WALL_DOOR_TYPES;
const newtype = this.wall.data.door === types.DOOR ? types.SECRET : types.DOOR;
const newtype = this.wall.document.door === types.DOOR ? types.SECRET : types.DOOR;
const updateData = {door: newtype};
const synchronizationGroup = this.wall.data.flags.smartdoors?.synchronizationGroup;
const synchronizationGroup = this.wall.document.flags.smartdoors?.synchronizationGroup;
if (
game.settings.get(settingsKey, "synchronizedDoors") &&
synchronizationGroup &&
this.wall.data.flags.smartdoors?.synchronizeSecretStatus
this.wall.document.flags.smartdoors?.synchronizeSecretStatus
)
updateSynchronizedDoors(updateData, synchronizationGroup);
else this.wall.document.update(updateData);