diff --git a/Intersect (Core)/GameObjects/Events/Commands/EventCommands.cs b/Intersect (Core)/GameObjects/Events/Commands/EventCommands.cs index 8b9d31df35..7157434098 100644 --- a/Intersect (Core)/GameObjects/Events/Commands/EventCommands.cs +++ b/Intersect (Core)/GameObjects/Events/Commands/EventCommands.cs @@ -151,6 +151,10 @@ public InputVariableCommand(Dictionary> commandLists) if (branch != Guid.Empty && commandLists.ContainsKey(branch)) { copyLists.Add(branch, commandLists[branch]); + foreach (var cmd in commandLists[branch]) + { + cmd.GetCopyData(commandLists, copyLists); + } } }