Skip to content

Commit

Permalink
Merge pull request #348 from AscensionGameDev/fix-257
Browse files Browse the repository at this point in the history
Fix copying and pasting of input variable commands.
  • Loading branch information
jcsnider committed Oct 1, 2020
2 parents ee737ba + d5776d2 commit ec86377
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions Intersect (Core)/GameObjects/Events/Commands/EventCommands.cs
Expand Up @@ -151,6 +151,10 @@ public InputVariableCommand(Dictionary<Guid, List<EventCommand>> commandLists)
if (branch != Guid.Empty && commandLists.ContainsKey(branch))
{
copyLists.Add(branch, commandLists[branch]);
foreach (var cmd in commandLists[branch])
{
cmd.GetCopyData(commandLists, copyLists);
}
}
}

Expand Down

0 comments on commit ec86377

Please sign in to comment.