Oh god, unresolved blocks are again unpassable.
git-svn-id: svn+ssh://src.earth.threerings.net/narya/trunk@2558 542714f4-19e9-0310-aa3c-eee0fc999fb1
This commit is contained in:
@@ -1,5 +1,5 @@
|
|||||||
//
|
//
|
||||||
// $Id: MisoScenePanel.java,v 1.26 2003/05/02 18:12:34 mdb Exp $
|
// $Id: MisoScenePanel.java,v 1.27 2003/05/09 01:12:06 mdb Exp $
|
||||||
|
|
||||||
package com.threerings.miso.client;
|
package com.threerings.miso.client;
|
||||||
|
|
||||||
@@ -482,7 +482,7 @@ public class MisoScenePanel extends VirtualMediaPanel
|
|||||||
public boolean canTraverse (Object traverser, int tx, int ty)
|
public boolean canTraverse (Object traverser, int tx, int ty)
|
||||||
{
|
{
|
||||||
SceneBlock block = getBlock(tx, ty);
|
SceneBlock block = getBlock(tx, ty);
|
||||||
return (block == null) ? true : block.canTraverse(traverser, tx, ty);
|
return (block == null) ? false : block.canTraverse(traverser, tx, ty);
|
||||||
}
|
}
|
||||||
|
|
||||||
// documentation inherited from interface
|
// documentation inherited from interface
|
||||||
|
|||||||
Reference in New Issue
Block a user