From c6aaad3edefde0e53b17ffdb768847fa1d94e428 Mon Sep 17 00:00:00 2001
From: DarkGod <darkgod@net-core.org>
Date: Sun, 2 Aug 2020 14:16:09 +0200
Subject: [PATCH] Corpse Explosion only works on Ghouls

---
 game/modules/tome/data/talents/uber/mag.lua      | 1 +
 game/modules/tome/data/timed_effects/magical.lua | 1 +
 2 files changed, 2 insertions(+)

diff --git a/game/modules/tome/data/talents/uber/mag.lua b/game/modules/tome/data/talents/uber/mag.lua
index ae2a698d32..31997993ba 100644
--- a/game/modules/tome/data/talents/uber/mag.lua
+++ b/game/modules/tome/data/talents/uber/mag.lua
@@ -350,6 +350,7 @@ uberTalent{
 			return not self:attr("true_undead") and nb > 0
 		end},
 		special2={desc=_t"Have completed the ritual", fct=function(self)
+			if config.settings.cheat then return true end
 			if self.lichform_quest_checker then return true end
 			if not game.state.birth.supports_lich_transform then return true else return self:isQuestStatus(game.state.birth.supports_lich_transform, engine.Quest.DONE) end
 		end},
diff --git a/game/modules/tome/data/timed_effects/magical.lua b/game/modules/tome/data/timed_effects/magical.lua
index b69ba7a94f..51f308d1b3 100644
--- a/game/modules/tome/data/timed_effects/magical.lua
+++ b/game/modules/tome/data/timed_effects/magical.lua
@@ -4860,6 +4860,7 @@ newEffect{
 		eff.turn_list = {}
 	end,
 	registerHit = function(self, eff, minion)
+		if not minion.ghoul_minion then return end
 		eff.turn_list[#eff.turn_list+1] = minion
 	end,
 	activate = function(self, eff)
-- 
GitLab