diff --git a/game/modules/tome/data/talents/spells/master-necromancer.lua b/game/modules/tome/data/talents/spells/master-necromancer.lua
index 1fe4c64c62f8637127e9fb45227853fbde0f3012..a368231572229d58ea7c07eb31479e0165a2a464 100644
--- a/game/modules/tome/data/talents/spells/master-necromancer.lua
+++ b/game/modules/tome/data/talents/spells/master-necromancer.lua
@@ -101,7 +101,8 @@ newTalent{
 		All non-ghoul minions are healed by %d%%.
 		If you know Call of the Mausoleum, the time remaining to the next free ghoul is reduced by %d.
 		if you know Corpse Explosion or Putrescent Liquefaction the duration of those effects are increased by %d.
-		All non-undead foes caught inside are dazed for %d turns.]]):
+		All non-undead foes caught inside are dazed for %d turns.
+		In addition all your minions (created after you learn this spell) have a passive health regeneration.]]):
 		tformat(t:_getSpeed(self), t:_getHeal(self), t:_getGhoulDur(self), t:_getGhoulDur(self), t:_getDaze(self))
 	end,
 }
diff --git a/game/modules/tome/data/talents/spells/spells.lua b/game/modules/tome/data/talents/spells/spells.lua
index 6b5f61b4404424f59d5b5eda3ff99903799c4985..53f4c01e0680ed2e821468c4488651ddf3c2215d 100644
--- a/game/modules/tome/data/talents/spells/spells.lua
+++ b/game/modules/tome/data/talents/spells/spells.lua
@@ -209,6 +209,10 @@ function necroSetupSummon(self, def, x, y, level, turns, no_control)
 		game.logSeen(self, "#GREY#%s can not be healed this way!", self:getName():capitalize())
 	end
 
+	if self:knowTalent(self.T_SURGE_OF_UNDEATH) then
+		m.life_regen = 0.5
+	end
+
 	if self:isTalentActive(self.T_NECROTIC_AURA) then
 		local t = self:getTalentFromId(self.T_NECROTIC_AURA)
 		local perc = t:_getInherit(self) / 100