From 51085d8bcad9b6ebad11717681c5e717699b75b6 Mon Sep 17 00:00:00 2001 From: Cynthia Foxwell Date: Mon, 19 Aug 2024 22:21:15 -0600 Subject: [PATCH] guildinfo: fix clan game level field name --- src/modules/utility/guildinfo.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/modules/utility/guildinfo.js b/src/modules/utility/guildinfo.js index d200534..4063189 100644 --- a/src/modules/utility/guildinfo.js +++ b/src/modules/utility/guildinfo.js @@ -86,7 +86,7 @@ guildinfo.callback = async function (msg, line, args, {nolocal, debug}) { let out = `${game.name} (\`${id}\`)`; - if (clan.game_activity[id]?.level > 1) { + if (clan.game_activity[id]?.activity_level > 1) { out = `:fire: ${out}`; } else { out = `${Icons.blank} ${out}`;