diff --git a/game/engines/default/engine/Target.lua b/game/engines/default/engine/Target.lua
index 1ec500894c2c45f7bbc43a6b260f2479b405811c..47e52fd4e53612be7e8479521627b59ce0a8faee 100644
--- a/game/engines/default/engine/Target.lua
+++ b/game/engines/default/engine/Target.lua
@@ -459,7 +459,7 @@ _M.defaults.block_path = function(typ, lx, ly, for_highlights)
 			-- Reduce the nb blocking for friendlies
 			if not typ.friendlyblock and typ.source_actor and typ.source_actor.reactionToward then
 				local a = game.level.map(lx, ly, engine.Map.ACTOR)
-				if a and typ.source_actor:reactionToward(a) > 0 then
+				if a and typ.source_actor:reactionToward(a) >= 0 then
 					nb = nb - 1
 				end
 			end
diff --git a/game/modules/tome/data/talents/spells/energy-alchemy.lua b/game/modules/tome/data/talents/spells/energy-alchemy.lua
index 7a880d0d7e044a813f22927bcfb8178e70177927..b65fc254f8029485535fbf4c25ee12de3503e333 100644
--- a/game/modules/tome/data/talents/spells/energy-alchemy.lua
+++ b/game/modules/tome/data/talents/spells/energy-alchemy.lua
@@ -159,7 +159,7 @@ newTalent{
 		end end
 
 		-- Randomly take targets
-		local tg = {type="hit", range=self:getTalentRange(t), talent=t, selffire=self:spellFriendlyFire()}
+		local tg = {type="hit", range=self:getTalentRange(t), talent=t, friendlyfire=false} -- don't make it blocked by the golem
 		for i = 1, 1 do
 			if #tgts <= 0 then break end
 			local a, id = rng.table(tgts)
diff --git a/game/modules/tome/data/talents/spells/explosives.lua b/game/modules/tome/data/talents/spells/explosives.lua
index 906b153612976778f34738f9d5845c130627dca9..e94ac4a4731b0d13361fa62e73a79a4e6006832c 100644
--- a/game/modules/tome/data/talents/spells/explosives.lua
+++ b/game/modules/tome/data/talents/spells/explosives.lua
@@ -106,7 +106,7 @@ newTalent{
 					self:callTalent(self.T_DYNAMIC_RECHARGE, "applyEffect", golem)
 				end
 			else -- reduced damage to friendly npcs (could make random chance like friendlyfire instead)
-				if target and self:reactionToward(target) > 0 then d = dam * (1 - prot) end
+				if target and self:reactionToward(target) >= 0 then d = dam * (1 - prot) end
 			end
 			if d <= 0 then return end