V14 update with various fixes

* Fixing so that chat messages now show list icon
* Fixed deprecation message from chat
* Adding our custom drop down icons to search compendium filter
* Fixing error when creating actors
This commit is contained in:
Litasa
2026-04-12 11:00:49 +00:00
parent 48a751b508
commit b14006a826
7 changed files with 17 additions and 22 deletions

View File

@@ -629,11 +629,11 @@ export class HelpersL5r5e {
}
/**
* Return the RollMode for this ChatData
* Return the MessageMode for this ChatData
* @param {object} chatData
* @return {string}
*/
static getRollMode(chatData) {
static getMessageMode(chatData) {
if (chatData.whisper.length === 1 && chatData.whisper[0] === game.user.id) {
return "self";
}