Removed redundant cast

This commit is contained in:
Bokros Bálint 2016-05-14 13:13:44 +02:00
parent 2564aca663
commit 1856974cc7

View File

@ -26,7 +26,7 @@ public class Player extends PlayerBase {
public void boxLift() { public void boxLift() {
if(!isDestroyed()) if(!isDestroyed())
boxLifted = (Box) currentTile.getAdjacentTile(facingDirection).getABox(); boxLifted = currentTile.getAdjacentTile(facingDirection).getABox();
} }
public void boxDrop() { public void boxDrop() {