diff --git a/src/as/com/threerings/presents/client/Client.as b/src/as/com/threerings/presents/client/Client.as index 178934a2d..b3baca73c 100644 --- a/src/as/com/threerings/presents/client/Client.as +++ b/src/as/com/threerings/presents/client/Client.as @@ -26,8 +26,8 @@ import flash.events.TimerEvent; import flash.utils.Timer; +import com.threerings.util.DelayUtil; import com.threerings.util.Log; -import com.threerings.util.MethodQueue; import com.threerings.util.Throttle; import com.threerings.presents.client.InvocationService_ConfirmListener; @@ -113,7 +113,7 @@ public class Client extends EventDispatcher public function callLater (fn :Function, args :Array = null) :void { - MethodQueue.callLater(fn, args); + DelayUtil.delayFrame(fn, args); } public function getHostname () :String