Add a customizable weight formatter function

This commit is contained in:
Oliver 2026-03-23 00:22:54 -06:00
parent 6e2dfa1cf1
commit 44372d0a17
3 changed files with 23 additions and 7 deletions

7
module/config.mjs Normal file
View file

@ -0,0 +1,7 @@
import { formatWeight } from "./utils/formatWeight.mjs";
const { deepSeal } = foundry.utils;
export const config = CONFIG.TAF = deepSeal({
weightFormatter: formatWeight,
});