Remove unnecessary console log

This commit is contained in:
Alejandro 2020-02-06 01:01:39 +02:00
parent ab1e1a1aed
commit 4389d7e18f

View File

@ -118,7 +118,6 @@ public class RoomUserWalkEvent extends MessageHandler {
// This is where we set the end location and begin finding a path
if (tile.isWalkable() || room.canSitOrLayAt(tile.x, tile.y)) {
if (roomUnit.getMoveBlockingTask() != null) roomUnit.getMoveBlockingTask().get();
System.out.println(roomUnit.getMoveBlockingTask());
roomUnit.setGoalLocation(tile);
}