From 72c80a886042501d5b6cced31be06cf860a4a322 Mon Sep 17 00:00:00 2001
From: dg <dg@51575b47-30f0-44d4-a5cc-537603b46e54>
Date: Sun, 2 Jun 2013 22:38:38 +0000
Subject: [PATCH] Birther can apply data to the party

git-svn-id: http://svn.net-core.org/repos/t-engine4@6817 51575b47-30f0-44d4-a5cc-537603b46e54
---
 game/modules/tome/dialogs/Birther.lua | 10 ++++++++++
 1 file changed, 10 insertions(+)

diff --git a/game/modules/tome/dialogs/Birther.lua b/game/modules/tome/dialogs/Birther.lua
index c2a76ec15c..505a4eba3f 100644
--- a/game/modules/tome/dialogs/Birther.lua
+++ b/game/modules/tome/dialogs/Birther.lua
@@ -207,6 +207,16 @@ function _M:applyingDescriptor(i, d)
 			end
 		end
 	end
+	if d.party_copy then
+		local copy = table.clone(d.party_copy, true)
+		-- Append array part
+		while #copy > 0 do
+			local f = table.remove(copy)
+			table.insert(game.party, f)
+		end
+		-- Copy normal data
+		table.merge(game.party, copy, true)
+	end
 	self:applyGameState(d)
 end
 
-- 
GitLab