set the list display as a user flag

This commit is contained in:
IrkTheImp 2025-06-27 20:17:38 -05:00
parent 798c07dffe
commit 51602de36d
4 changed files with 8 additions and 7 deletions

View file

@ -0,0 +1 @@
export const displayDomainCardsAsList = 'displayDomainCardsAsList';

View file

@ -6,6 +6,7 @@ import * as SETTINGS from './settingsConfig.mjs';
import { hooks as HOOKS } from './hooksConfig.mjs';
import * as EFFECTS from './effectConfig.mjs';
import * as ACTIONS from './actionConfig.mjs';
import * as FLAGS from './flagsConfig.mjs';
export const SYSTEM_ID = 'daggerheart';
@ -18,5 +19,6 @@ export const SYSTEM = {
SETTINGS,
HOOKS,
EFFECTS,
ACTIONS
ACTIONS,
FLAGS
};