Drental/fvtt-tokenactionhud

Token issue creating compendium advenure module

Closed this issue · 1 comments

🌈Spice_King — Today at 11:15 AM
Yea, the data added token action hud broke Foundry's sane limits to prevent infinite loops, lockups and crashes.

from Foundry Discord : Troubleshooting channel

Token Action HUD Core 1.4.0 onwards saves data to json files instead of actor and user flags. There is a migration script in this version and later. For anyone with this issue that does not update to the current version, you can run this code in a macro script to clear out the old flag data:

const actors = game.actors.filter(actor => actor.getFlag('token-action-hud-core', 'categories'))
for (const actor of actors) {
    actor.unsetFlag('token-action-hud-core', 'categories')
}

const users = game.users.filter(user => user.getFlag('token-action-hud-core', 'categories'))
for (const user of users) {
    user.unsetFlag('token-action-hud-core', 'categories')
    user.unsetFlag('token-action-hud-core', 'default')
}