diff --git a/public/scripts/world-info.js b/public/scripts/world-info.js index 574aeae20..aed867326 100644 --- a/public/scripts/world-info.js +++ b/public/scripts/world-info.js @@ -1012,8 +1012,8 @@ function registerWorldInfoSlashCommands() { throw new Error('This command can only be used in chat'); } - const file = resolveVariable(args.file); - const uid = resolveVariable(value); + const file = args.file; + const uid = value; const effect = args.effect; const entries = await getEntriesFromFile(file); @@ -1050,8 +1050,8 @@ function registerWorldInfoSlashCommands() { throw new Error('This command can only be used in chat'); } - const file = resolveVariable(args.file); - const uid = resolveVariable(args.uid); + const file = args.file; + const uid = args.uid; const effect = args.effect; if (value === undefined) {