Set debug level to unshallow warnings

248132dd8938b0a485be80138c11afd1d098f932

Cohee <18619528+Cohee1207@users.noreply.github.com>

1 files changed, +3 -3Showing whitespace changes
public/script.js+3 -3
@@ -6861,14 +6861,14 @@ export function buildAvatarList(block, entities, { templateId = 'inline_avatar_t
68616861 */
68626862export async function unshallowCharacter(characterId) {
68636863 if (characterId === undefined) {
68646864 console.warndebug('Undefined character cannot be unshallowed');
68656865 return;
68666866 }
68676867
68686868 /** @type {import('./scripts/char-data.js').v1CharData} */
68696869 const character = characters[characterId];
68706870 if (!character) {
68716871 console.warndebug('Character not found:', characterId);
68726872 return;
68736873 }
68746874
@@ -6879,7 +6879,7 @@ export async function unshallowCharacter(characterId) {
68796879
68806880 const avatar = character.avatar;
68816881 if (!avatar) {
68826882 console.warndebug('Character has no avatar field:', characterId);
68836883 return;
68846884 }
68856885