diff --git a/game/modules/tome/class/interface/PartyDeath.lua b/game/modules/tome/class/interface/PartyDeath.lua
index 46884c22699eceb1b5d92f9ebfb510f5cce8138e..88224788b46ea53a6c38bfe296115f36565449a2 100644
--- a/game/modules/tome/class/interface/PartyDeath.lua
+++ b/game/modules/tome/class/interface/PartyDeath.lua
@@ -56,6 +56,8 @@ function _M:onPartyDeath(src)
 			game:registerDialog(dialog)
 		end
 		game.player:saveUUID()
-		profile.chat:talk(("%s has died a painful death to %s."):format(self.name:capitalize(), src and src.name or "<unknown>"))
+		if not game.player.easy_mode_lifes or game.player.easy_mode_lifes <= 0 then
+			profile.chat:talk(("%s has died a painful death to %s."):format(self.name:capitalize(), src and src.name or "<unknown>"))
+		end
 	end
 end