Add register settings for "early" settings#290
Add register settings for "early" settings#290Hoppelite wants to merge 1 commit intoMrPrimate:mainfrom
Conversation
|
These are already registered else where, it might be that a module conflict is causing them to be delayed till later, as they are on an odd hook, I will try moving them to earlier in the init hook, rather than looping additionally here. (I don't see these errors on any of my test platforms). |
Ahh, I see. The issue we are finding is when it tries to get the It might not be suitable to rely on the hooks running in a particular order for this as it causes a race condition (in a sense). if (game.settings.get(SETTINGS.MODULE_ID, "developer-mode")) {
CONFIG.DDBI.DEV.enabled = true;
}To the early settings registry function instead? |
|
Does this still occur for you in v3.3.0 or v3.3.1 of the module? |
This was causing this file to break when checking for

developer-modebelow. It seems that unregistered settings are being unset.