From 03876838b3797b023175bd53d768388cc1404b2a Mon Sep 17 00:00:00 2001 From: Ray Greenwell Date: Sat, 24 Feb 2007 00:42:24 +0000 Subject: [PATCH] Gah, my bad: we've got to return the value from the friend function. Of course, the flash documentation says that function.apply() returns void, but luckily this is not the case. DO NOT TRUST THEIR DOCS, they are riddled with errors. git-svn-id: svn+ssh://src.earth.threerings.net/vilya/trunk@210 c613c5cb-e716-0410-b11b-feb51c14d237 --- src/as/com/threerings/ezgame/EZGameControl.as | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/as/com/threerings/ezgame/EZGameControl.as b/src/as/com/threerings/ezgame/EZGameControl.as index 0bba0b64..17af58f1 100644 --- a/src/as/com/threerings/ezgame/EZGameControl.as +++ b/src/as/com/threerings/ezgame/EZGameControl.as @@ -605,7 +605,7 @@ public class EZGameControl extends BaseControl { // var args args.unshift(name); - callEZCode.apply(this, args); + return callEZCode.apply(this, args); } /**