From 65cee92ba6a85bf85c3059876700d0b00c3f393d Mon Sep 17 00:00:00 2001 From: Michael Bayne Date: Sat, 4 Aug 2001 03:06:39 +0000 Subject: [PATCH] Account for invocation id in invocation response methods. git-svn-id: svn+ssh://src.earth.threerings.net/narya/trunk@182 542714f4-19e9-0310-aa3c-eee0fc999fb1 --- src/java/com/threerings/crowd/client/LocationDirector.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/java/com/threerings/crowd/client/LocationDirector.java b/src/java/com/threerings/crowd/client/LocationDirector.java index 2120a13bf..15ca94cc5 100644 --- a/src/java/com/threerings/crowd/client/LocationDirector.java +++ b/src/java/com/threerings/crowd/client/LocationDirector.java @@ -1,5 +1,5 @@ // -// $Id: LocationDirector.java,v 1.5 2001/08/02 04:59:54 mdb Exp $ +// $Id: LocationDirector.java,v 1.6 2001/08/04 03:06:39 mdb Exp $ package com.threerings.cocktail.party.client; @@ -145,7 +145,7 @@ public class LocationManager /** * Called in response to a successful moveTo request. */ - public void handleMoveSucceeded () + public void handleMoveSucceeded (int invid) { DObjectManager omgr = _ctx.getDObjectManager(); @@ -167,7 +167,7 @@ public class LocationManager /** * Called in response to a failed moveTo request. */ - public void handleMoveFailed (String reason) + public void handleMoveFailed (int invid, String reason) { // clear out our pending request oid int placeId = _pendingPlaceId;