We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e4ec598 commit 439ab9aCopy full SHA for 439ab9a
module/checks/check-configuration.mjs
@@ -1,3 +1,4 @@
1
+import { SETTINGS } from '../settings.js';
2
import { SYSTEM } from '../helpers/config.mjs';
3
import { Flags } from '../helpers/flags.mjs';
4
import { CheckHooks } from './check-hooks.mjs';
@@ -237,7 +238,10 @@ class CheckInspector {
237
238
* @param {CheckResultV2} check
239
*/
240
const registerMetaCurrencyExpenditure = (check) => {
- if (!game.settings.get(SYSTEM, Flags.ChatMessage.UseMetaCurrency)) {
241
+ // if (!game.settings.get(SYSTEM, Flags.ChatMessage.UseMetaCurrency)) {
242
+ // return;
243
+ // }
244
+ if (!game.settings.get(SYSTEM, SETTINGS.metaCurrencyAutomation)) {
245
return;
246
}
247
const randomId = foundry.utils.randomID();
0 commit comments