Update the simple worldbuilding system for new manifest properties and to allow decimal initiative

This commit is contained in:
Andrew 2020-03-02 20:34:14 -08:00
parent df11172628
commit c3402a0acf
2 changed files with 7 additions and 3 deletions

View file

@ -19,7 +19,10 @@ Hooks.once("init", async function() {
* Set an initiative formula for the system
* @type {String}
*/
CONFIG.initiative.formula = "1d20";
CONFIG.Combat.initiative = {
formula: "1d20",
decimals: 2
};
// Register sheet application classes
Actors.unregisterSheet("core", ActorSheet);