REFACTOR: rename folder data/items -> data/item

REFACTOR: rename folder `data/messages` -> `data/chat-message`.
This commit is contained in:
Joaquin Pereyra 2025-06-02 18:00:04 -03:00
parent a6acbe750a
commit 08a21dcb2f
19 changed files with 25 additions and 16 deletions

View file

@ -72,12 +72,7 @@ Hooks.once('init', () => {
base: models.DhpCombatant
};
CONFIG.ChatMessage.dataModels = {
dualityRoll: models.DhpDualityRoll,
adversaryRoll: models.DhpAdversaryRoll,
damageRoll: models.DhpDamageRoll,
abilityUse: models.DhpAbilityUse
};
CONFIG.ChatMessage.dataModels = models.messages.config;
CONFIG.ChatMessage.documentClass = applications.DhpChatMessage;
CONFIG.Canvas.rulerClass = DhpRuler;