From e492239b2bcb99681f113d5f432ffc4478dab71e Mon Sep 17 00:00:00 2001 From: Joe Nosie <182554+BoltsJ@users.noreply.github.com> Date: Sat, 3 Sep 2022 12:17:08 -0500 Subject: [PATCH] Enable sorting by default. Off by default was a legacy choice due to an obsolete bug. The option may be entirely removed in the future. --- src/lancer-initiative.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lancer-initiative.ts b/src/lancer-initiative.ts index 7ec3922..424c755 100644 --- a/src/lancer-initiative.ts +++ b/src/lancer-initiative.ts @@ -72,7 +72,7 @@ function registerSettings(): void { config: true, type: Boolean, onChange: () => game.combats?.render(), - default: false, + default: true, }); // Allows initiative rolling to be toggled. Optional for downstreams. game.settings.register(module, "combat-tracker-enable-initiative", {