diff --git a/game/modules/tome/data/talents/chronomancy/chronomancer.lua b/game/modules/tome/data/talents/chronomancy/chronomancer.lua
index 22a1f8b2453c176526fce7f409cd30218be714e9..116623bd81a229a1445bb064eb57e5f4f48c38b2 100644
--- a/game/modules/tome/data/talents/chronomancy/chronomancer.lua
+++ b/game/modules/tome/data/talents/chronomancy/chronomancer.lua
@@ -293,7 +293,7 @@ makeParadoxClone = function(self, target, duration, alt_nodes)
 
 	-- Don't copy certain fields from the target
 	alt_nodes = alt_nodes or {}
-	alt_nodes[target:getInven("INVEN")] = false -- Skip main inventory; equipped items are still copied
+	if target:getInven("INVEN") then alt_nodes[target:getInven("INVEN")] = false end -- Skip main inventory; equipped items are still copied
 	alt_nodes.quests = false
 	alt_nodes.random_escort_levels = false
 	alt_nodes.achievements = false