From cecd8c9d5abc30ab44af9f5b6736f0b81458c108 Mon Sep 17 00:00:00 2001 From: Insality Date: Thu, 15 Oct 2020 22:16:15 +0300 Subject: [PATCH] Typo fix --- druid/system/druid_instance.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/druid/system/druid_instance.lua b/druid/system/druid_instance.lua index f336253..8d5a934 100644 --- a/druid/system/druid_instance.lua +++ b/druid/system/druid_instance.lua @@ -206,7 +206,7 @@ function DruidInstance.remove(self, component) -- Recursive remove all children of component local children = component._meta.children - for i = #children, 1, -1do + for i = #children, 1, -1 do self:remove(children[i]) local parent = children[i]:get_parent_component() if parent then