From ee8d3f177f6e12801fdd5eb4cf08b692cce923d5 Mon Sep 17 00:00:00 2001 From: Josephine Barthel Date: Thu, 16 Jun 2022 22:26:22 +0200 Subject: [PATCH] Properly parse the Ghastly Eye Jewel mod "% increased cast speed if a minion has been killed recently" --- src/Modules/ModParser.lua | 1 + 1 file changed, 1 insertion(+) diff --git a/src/Modules/ModParser.lua b/src/Modules/ModParser.lua index 0c71cbb9ee..36920eded8 100644 --- a/src/Modules/ModParser.lua +++ b/src/Modules/ModParser.lua @@ -1399,6 +1399,7 @@ local modTagList = { ["if you have a summoned golem"] = { tag = { type = "Condition", varList = { "HavePhysicalGolem", "HaveLightningGolem", "HaveColdGolem", "HaveFireGolem", "HaveChaosGolem", "HaveCarrionGolem" } } }, ["while you have a summoned golem"] = { tag = { type = "Condition", varList = { "HavePhysicalGolem", "HaveLightningGolem", "HaveColdGolem", "HaveFireGolem", "HaveChaosGolem", "HaveCarrionGolem" } } }, ["if a minion has died recently"] = { tag = { type = "Condition", var = "MinionsDiedRecently" } }, + ["if a minion has been killed recently"] = { tag = { type = "Condition", var = "MinionsDiedRecently" } }, ["while you have sacrificial zeal"] = { tag = { type = "Condition", var = "SacrificialZeal" } }, ["while sane"] = { tag = { type = "Condition", var = "Insane", neg = true } }, ["while insane"] = { tag = { type = "Condition", var = "Insane" } },