Require that the current scene be specified in the change location request

because odd things frequently happen if a player somehow double clicks or
in some other way queues up a change scene then a change loc from the
previous scene.


git-svn-id: svn+ssh://src.earth.threerings.net/narya/trunk@2768 542714f4-19e9-0310-aa3c-eee0fc999fb1
This commit is contained in:
Michael Bayne
2003-08-13 00:11:03 +00:00
parent 32bfc704d7
commit c2299fbbd7
5 changed files with 26 additions and 16 deletions
@@ -1,5 +1,5 @@
//
// $Id: SpotService.java,v 1.15 2003/03/27 00:10:08 mdb Exp $
// $Id: SpotService.java,v 1.16 2003/08/13 00:11:03 mdb Exp $
package com.threerings.whirled.spot.client;
@@ -33,9 +33,10 @@ public interface SpotService extends InvocationService
* location. The user will be removed from any cluster from which they
* are an occupant.
*
* @param sceneId the id of the scene in which to change location.
* @param loc the location to which to move.
*/
public void changeLocation (Client client, Location loc,
public void changeLocation (Client client, int sceneId, Location loc,
ConfirmListener listener);
/**