added method Tile.isSteppable() for obvious reasons...
This commit is contained in:
@ -18,6 +18,14 @@ public class Wall extends Tile {
|
||||
return;
|
||||
}
|
||||
|
||||
@Override
|
||||
public boolean isSteppable() {
|
||||
if (sg != null)
|
||||
return true;
|
||||
|
||||
return false;
|
||||
}
|
||||
|
||||
public void clearStargate() {
|
||||
if(sg != null) {
|
||||
sg.setCurrentWall(null);
|
||||
|
Reference in New Issue
Block a user