Deleted echoes from all classes
This commit is contained in:
@ -5,36 +5,19 @@ public class Wall extends Tile {
|
||||
|
||||
|
||||
public void spawnStargate(Stargate stargate, Direction direction) {
|
||||
Menu.addTab();
|
||||
System.out.println(">" + "[" + ":" + this.getClass().getSimpleName() + "]" + Menu.tabulator + "Wall.spawnStargate(stargate," + direction.name() + ")");
|
||||
if(sg == null)
|
||||
sg = stargate;
|
||||
else
|
||||
return;
|
||||
System.out.println("<" + "[" + ":" + this.getClass().getSimpleName() + "]" + Menu.tabulator + "Wall.spawnStargate()");
|
||||
Menu.removeTab();
|
||||
}
|
||||
|
||||
public void clearStargate(){
|
||||
Menu.addTab();
|
||||
System.out.println(">" + "[" + ":" + this.getClass().getSimpleName() + "]" + Menu.tabulator + "Wall.clearStargate()");
|
||||
sg = null;
|
||||
System.out.println("<" + "[" + ":" + this.getClass().getSimpleName() + "]" + Menu.tabulator + "Wall.clearStargate()");
|
||||
Menu.removeTab();
|
||||
|
||||
sg = null;
|
||||
}
|
||||
|
||||
public void onEntry() {
|
||||
Menu.addTab();
|
||||
System.out.println(">" + "[" + ":" + this.getClass().getSimpleName() + "]" + Menu.tabulator + "Wall.onEntry()");
|
||||
System.out.println("<" + "[" + ":" + this.getClass().getSimpleName() + "]" + Menu.tabulator + "Wall.onEntry()");
|
||||
Menu.removeTab();
|
||||
}
|
||||
|
||||
public void onExit() {
|
||||
Menu.addTab();
|
||||
System.out.println(">" + "[" + ":" + this.getClass().getSimpleName() + "]" + Menu.tabulator + "Wall.onExit()");
|
||||
System.out.println("<" + "[" + ":" + this.getClass().getSimpleName() + "]" + Menu.tabulator + "Wall.onExit()");
|
||||
Menu.removeTab();
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user