Skip to content
Snippets Groups Projects
Commit 9a0d8d0d authored by DarkGod's avatar DarkGod
Browse files

Fixed projection talents from bugging the keyboard when saving

parent 68ca28d0
No related branches found
No related tags found
No related merge requests found
......@@ -2312,9 +2312,13 @@ function _M:saveGame()
local party = game.party:cloneFull()
party.__te4_uuid = game:getPlayer(true).__te4_uuid
for m, _ in pairs(party.members) do
m:attr("save_cleanup", 1)
m:stripForExport()
m:attr("save_cleanup", -1)
end
party:attr("save_cleanup", 1)
party:stripForExport()
party:attr("save_cleanup", -1)
game.player:saveUUID(party)
end end))
_G.game = self
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment