Meant to make tiles non-covered by default. "...change the poles from

plus to minus, and from minus to plus!"


git-svn-id: svn+ssh://src.earth.threerings.net/narya/trunk@955 542714f4-19e9-0310-aa3c-eee0fc999fb1
This commit is contained in:
Walter Korman
2002-02-07 02:58:46 +00:00
parent b4f20f1b36
commit de2a0eee01
@@ -1,5 +1,5 @@
//
// $Id: BaseTile.java,v 1.4 2002/02/06 17:13:06 mdb Exp $
// $Id: BaseTile.java,v 1.5 2002/02/07 02:58:46 shaper Exp $
package com.threerings.miso.tile;
@@ -63,5 +63,5 @@ public class BaseTile extends Tile
protected boolean _passable = true;
/** Whether the tile is covered by an object tile. */
protected boolean _covered = true;
protected boolean _covered = false;
}