Trait Items #72

Open
Oliver wants to merge 41 commits from feature/trait-items into main
2 changed files with 8 additions and 0 deletions
Showing only changes of commit 07cba3d409 - Show all commits

View file

@ -0,0 +1,7 @@
/*
This is to prevent my tweaks module from adding invasive tweaks during development
of the system. But allowing all of the non-invasive tweaks to be used.
*/
Hooks.on(`oft.preRegisterTweak`, (tweak, invasive) => {
return !invasive;
});

View file

@ -1,3 +1,4 @@
// Hooks
import "./hooks/hotReload.mjs";
import "./hooks/oft.preRegisterTweak.mjs";
import "./hooks/getHeaderControlsActorSheetV2.mjs";