Add better status indicators, and a setting to prevent movement history recording

This commit is contained in:
Oliver 2025-12-13 21:31:56 -07:00
parent 344e9c55ab
commit c2601ba69c
18 changed files with 183 additions and 79 deletions

17
module/hooks/init.mjs Normal file
View file

@ -0,0 +1,17 @@
// Settings
import { preventMovementHistory } from "../settings/preventMovementHistory.mjs";
// Utils
import { Logger } from "../utils/Logger.mjs";
/*
This is only here for setting that **require** being registered during
initialization due to documentClass changes. If there is any way that
these settings can be implemented to work during the setup hook, that is
where they ideally should be implemented.
*/
Hooks.on(`init`, () => {
Logger.log(`Initializing`);
preventMovementHistory();
});