setCurrentWall now doesn't use nonexistent methods

This commit is contained in:
Kjistóf 2016-04-01 17:59:42 +02:00
parent 562015b7ab
commit 65436b2ed4

View File

@ -27,9 +27,9 @@ public class Stargate {
public void setCurrentWall(cicaprojekt.Wall wall) {
Menu.addTab();
System.out.println(">" + "[" + ":" + this.getClass().getSimpleName() + "]" + Menu.tabulator + "Stargate.setCurrentWall(" + wall.name() + ")");
currentWall = wall;
System.out.println("<" + "[" + ":" + this.getClass().getSimpleName() + "]" + Menu.tabulator + "Stargate.setCurrentWall(" + wall.name() + ")");
System.out.println(">" + "[" + ":" + this.getClass().getSimpleName() + "]" + Menu.tabulator + "Stargate.setCurrentWall(" + "wall" + ")");
currentWall = wall;
System.out.println("<" + "[" + ":" + this.getClass().getSimpleName() + "]" + Menu.tabulator + "Stargate.setCurrentWall(" + "wall" + ")");
Menu.removeTab();
}