Skip to content

Commit

Permalink
Bump version to v0.4.0
Browse files Browse the repository at this point in the history
  • Loading branch information
SylviBlossom committed Apr 20, 2022
1 parent c0e0af8 commit f4cf9c1
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 3 deletions.
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.4.0-dev
0.4.0
2 changes: 1 addition & 1 deletion mods/_testmod/mod.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"subtitle": "A testing mod full of various stuff and things",

"version": "v?.?.?",
"engineVer": "v0.4.0-dev",
"engineVer": "v0.4.0",

"chapter": 2,

Expand Down
2 changes: 1 addition & 1 deletion mods/example/mod.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"subtitle": "",

"version": "v1.0.0",
"engineVer": "v0.4.0-dev",
"engineVer": "v0.4.0",

"chapter": 2,

Expand Down
2 changes: 2 additions & 0 deletions src/engine/object.lua
Original file line number Diff line number Diff line change
Expand Up @@ -579,6 +579,7 @@ function Object:addChild(child)
table.insert(self.children, child)
child:onAdd(self)
self.update_child_list = true
return child
end

function Object:removeChild(child)
Expand All @@ -590,6 +591,7 @@ function Object:removeChild(child)
end
self.children_to_remove[child] = true
self.update_child_list = true
return child
end

function Object:setParent(parent)
Expand Down

0 comments on commit f4cf9c1

Please sign in to comment.