From cb3ed18a9e78cba60e66f67dec9d878549995a23 Mon Sep 17 00:00:00 2001
From: dg <dg@51575b47-30f0-44d4-a5cc-537603b46e54>
Date: Fri, 13 May 2011 09:24:37 +0000
Subject: [PATCH] Adventure mode deaths will only be reported once the last
 life is expanded

git-svn-id: http://svn.net-core.org/repos/t-engine4@3343 51575b47-30f0-44d4-a5cc-537603b46e54
---
 game/modules/tome/class/interface/PartyDeath.lua | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/game/modules/tome/class/interface/PartyDeath.lua b/game/modules/tome/class/interface/PartyDeath.lua
index 46884c2269..88224788b4 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
-- 
GitLab