Skip to content

Commit

Permalink
Fix reconciler with init files, v0.2.2
Browse files Browse the repository at this point in the history
  • Loading branch information
LPGhatguy committed Dec 1, 2017
1 parent 974ebc3 commit bf9be6c
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 2 deletions.
4 changes: 4 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,10 @@
## Current Master
* *No changes*

## 0.2.2
* Plugin only release
* Fixed broken reconciliation behavior with `init` files

## 0.2.1
* Plugin only release
* Changes default port to 8000
Expand Down
2 changes: 1 addition & 1 deletion plugin/src/Config.lua
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
return {
pollingRate = 0.3,
version = "0.2.1",
version = "0.2.2",
}
2 changes: 1 addition & 1 deletion plugin/src/Reconciler.lua
Original file line number Diff line number Diff line change
Expand Up @@ -164,7 +164,7 @@ function Reconciler.reconcile(rbx, item, fileName, parent)
for _, childRbx in ipairs(rbx:GetChildren()) do
-- Child was deleted!
if not visitedChildren[childRbx.Name] then
Reconciler.reconcile(childRbx, nil, nil)
childRbx:Destroy()
end
end

Expand Down

0 comments on commit bf9be6c

Please sign in to comment.