From 481c3db2ddcbd59ebb61124f67a1b2861a50a989 Mon Sep 17 00:00:00 2001
From: dg <dg@51575b47-30f0-44d4-a5cc-537603b46e54>
Date: Mon, 1 Apr 2013 09:18:11 +0000
Subject: [PATCH] Fixed a weird death bug

git-svn-id: http://svn.net-core.org/repos/t-engine4@6615 51575b47-30f0-44d4-a5cc-537603b46e54
---
 game/modules/tome/class/interface/PlayerDumpJSON.lua | 4 +++-
 game/modules/tome/dialogs/DeathDialog.lua            | 4 ++--
 2 files changed, 5 insertions(+), 3 deletions(-)

diff --git a/game/modules/tome/class/interface/PlayerDumpJSON.lua b/game/modules/tome/class/interface/PlayerDumpJSON.lua
index cab3df3e0c..10b1dc23ea 100644
--- a/game/modules/tome/class/interface/PlayerDumpJSON.lua
+++ b/game/modules/tome/class/interface/PlayerDumpJSON.lua
@@ -354,7 +354,9 @@ function _M:dumpToJSON(js, bypass, nosub)
 	local achs = js:newSection("achievements")
 	for id, data in pairs(self.achievements or {}) do
 		local a = world:getAchievementFromId(id)
-		achs[#achs+1] = { name=a.name, when=game.calendar:getTimeDate(data.turn, "%s %s %s year of Ascendancy at %02d:%02d"), desc=a.desc.."\nBy "..(data.who or "???")}
+		if a then
+			achs[#achs+1] = { name=a.name, when=game.calendar:getTimeDate(data.turn, "%s %s %s year of Ascendancy at %02d:%02d"), desc=a.desc.."\nBy "..(data.who or "???")}
+		end
 	end
 	table.sort(achs, function(a, b) return a.name < b.name end)
 
diff --git a/game/modules/tome/dialogs/DeathDialog.lua b/game/modules/tome/dialogs/DeathDialog.lua
index f51ac4554a..9988c02196 100644
--- a/game/modules/tome/dialogs/DeathDialog.lua
+++ b/game/modules/tome/dialogs/DeathDialog.lua
@@ -127,8 +127,8 @@ function _M:resurrectBasic(actor)
 
 	-- apply cursed equipment
 	if actor.hasTalent and actor.hasTalent(actor.T_DEFILING_TOUCH) then
-		local t = self:getTalentFromId(self.T_DEFILING_TOUCH)
-		t.updateCurses(self, t, true)
+		local t = actor:getTalentFromId(actor.T_DEFILING_TOUCH)
+		t.updateCurses(actor, t, true)
 	end
 
 	actor.changed = true
-- 
GitLab