Skip to content

Commit

Permalink
Fixes to Race Queue
Browse files Browse the repository at this point in the history
  • Loading branch information
NellsRelo committed Dec 19, 2023
1 parent 72a08a8 commit 3c950bd
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -147,11 +147,11 @@ end
function Queue.Commit_ChildNodes(gameObject, childNodes)
for key, value in pairs(childNodes) do
local res = CLUtils.InsertFromTableToTable(gameObject[key], {})
local count = #gameObject[key] + 1
for _, val in pairs(value) do
table.insert(res, val)
gameObject[key][count] = val
count = count + 1
end

gameObject[key] = res
end
end

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,10 +22,10 @@
<attribute id="Tags" type="LSWString" value="Template"/>
<attribute id="Type" type="FixedString" value="Patch"/>
<attribute id="UUID" type="FixedString" value="67fbbd53-7c7d-4cfa-9409-6d737b4d92a9"/>
<attribute id="Version64" type="int64" value="72902025410510852"/>
<attribute id="Version64" type="int64" value="72902025410510853"/>
<children>
<node id="PublishVersion">
<attribute id="Version64" type="int64" value="72902025410510852"/>
<attribute id="Version64" type="int64" value="72902025410510853"/>
</node>
<node id="Scripts" />
<node id="TargetModes">
Expand Down

0 comments on commit 3c950bd

Please sign in to comment.