MrPrimate / tokenizer

Tiny yet capable in-game token editor for Foundry VTT
MIT License
28 stars 25 forks source link

Getting "Failed to Load Frame:" error #137

Closed Kormael closed 1 year ago

Kormael commented 1 year ago

Whenever i open up tokenizer or try to load any frames to the token i constantly get an error "Failed to Load Frame:" Screenshot 2023-07-01 180906

MrPrimate commented 1 year ago

The default frame in your settings can't be loaded.

To fix either:

game.settings.settings.forEach((s) => {
  if (s.namespace !== "vtta-tokenizer") return;
  game.settings.set(s.namespace, s.key, s.default);
});

or look at the file paths for your default frames, and use the filepicker icon to ensure they are correct/exist.

Edit: Although having said both of those it does look like the default frames are not present, so something may have gone wrong with Foundry during a module update or install, so might be wroth attempting a reinstall

Kormael commented 1 year ago

running the macro fixed it, thanks!