Report the type and id separately when reporting a zone move.

git-svn-id: svn+ssh://src.earth.threerings.net/narya/trunk@2186 542714f4-19e9-0310-aa3c-eee0fc999fb1
This commit is contained in:
Michael Bayne
2003-01-18 20:12:49 +00:00
parent 5414507e3a
commit 99d66fe5c6
@@ -1,5 +1,5 @@
//
// $Id: ZoneDirector.java,v 1.11 2002/11/03 01:15:36 mdb Exp $
// $Id: ZoneDirector.java,v 1.12 2003/01/18 20:12:49 mdb Exp $
package com.threerings.whirled.zone.client;
@@ -18,6 +18,7 @@ import com.threerings.whirled.util.WhirledContext;
import com.threerings.whirled.zone.Log;
import com.threerings.whirled.zone.data.ZoneSummary;
import com.threerings.whirled.zone.util.ZoneUtil;
/**
* The zone director augments the scene services with the notion of zones.
@@ -118,8 +119,9 @@ public class ZoneDirector extends BasicDirector
}
// issue a moveTo request
Log.info("Issuing zoned moveTo(" + zoneId + ", " +
sceneId + ", " + sceneVers + ").");
Log.info("Issuing zoned moveTo(" + ZoneUtil.zoneType(zoneId) + ":" +
ZoneUtil.zoneId(zoneId) + ", " + sceneId + ", " +
sceneVers + ").");
_zservice.moveTo(_ctx.getClient(), zoneId, sceneId, sceneVers, this);
return true;
}