Let's go ahead and log this so that we can determine whether or not it

actually happens.


git-svn-id: svn+ssh://src.earth.threerings.net/narya/trunk@2802 542714f4-19e9-0310-aa3c-eee0fc999fb1
This commit is contained in:
Michael Bayne
2003-09-22 23:48:58 +00:00
parent b6c3c58ca3
commit 0d890bc8c4
@@ -1,5 +1,5 @@
//
// $Id: SpotSceneManager.java,v 1.44 2003/09/22 23:42:49 mdb Exp $
// $Id: SpotSceneManager.java,v 1.45 2003/09/22 23:48:58 mdb Exp $
package com.threerings.whirled.spot.server;
@@ -292,6 +292,10 @@ public class SpotSceneManager extends SceneManager
// make sure we're in the same scene as said user
BodyObject friend = (BodyObject)tobj;
if (friend.location != joiner.location) {
Log.info("Refusing cluster join from non-proximate user " +
"[joiner=" + joiner.who() + ", jloc=" + joiner.location +
", target=" + friend.who() +
", tloc=" + friend.location + "].");
throw new InvocationException(NO_SUCH_CLUSTER);
}