diff --git a/src/as/com/threerings/presents/client/ResultWrapper.as b/src/as/com/threerings/presents/client/ResultWrapper.as index 31779b2d8..4acd31c96 100644 --- a/src/as/com/threerings/presents/client/ResultWrapper.as +++ b/src/as/com/threerings/presents/client/ResultWrapper.as @@ -40,7 +40,9 @@ public class ResultWrapper extends InvocationAdapter // documentation inherited from interface ResultListener public function requestProcessed (result :Object) :void { - _processed(result); + if (_processed != null) { + _processed(result); + } } protected var _processed :Function;