From 0100a47d9ecb61bcf3a1d5a124da9612e8250d19 Mon Sep 17 00:00:00 2001 From: Chris Laurel Date: Tue, 6 May 2003 09:51:33 +0000 Subject: [PATCH] Moved getchildren from celestia to object class. --- scripts/tour-system.celx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/tour-system.celx b/scripts/tour-system.celx index 0f9c47cfa..c2f0d7d4c 100644 --- a/scripts/tour-system.celx +++ b/scripts/tour-system.celx @@ -13,7 +13,7 @@ function visit(o) celestia:flash(o:type() .. " - " .. o:name()) goto(o, 3) wait(0.5) - local children = celestia:getchildren(o) + local children = o:getchildren() for i, v in ipairs(children) do visit(v) end