Simplified isSteppable in Wall

This commit is contained in:
Bokros Bálint 2016-05-14 13:23:59 +02:00
parent 92f894c5a5
commit c2053fae96

View File

@ -20,10 +20,7 @@ public class Wall extends Tile {
@Override
public boolean isSteppable() {
if (sg != null)
return true;
return false;
return sg != null;
}
public void clearStargate() {