From e107c52df487bd5c0fcc44f8679975ba1f6db364 Mon Sep 17 00:00:00 2001 From: Celtic Minstrel Date: Tue, 28 Feb 2017 18:55:59 -0500 Subject: [PATCH] Fix improper child_range call in [animate_unit] --- data/lua/wml/animate_unit.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/data/lua/wml/animate_unit.lua b/data/lua/wml/animate_unit.lua index a72c8e5326d1..1637fd965794 100644 --- a/data/lua/wml/animate_unit.lua +++ b/data/lua/wml/animate_unit.lua @@ -102,7 +102,7 @@ local function add_animation(anim, cfg) }) end - for c in helper.child_range("animate") do + for c in helper.child_range(cfg, "animate") do add_animation(anim, c) end end