Fixed floor rendering

This commit is contained in:
Anuken
2018-05-02 00:19:38 -04:00
parent c3967c79c9
commit 72fc673020
3 changed files with 46 additions and 172 deletions
@@ -70,7 +70,7 @@ public class Pathfinder {
}
private void clear(){
Timers.markNs();
Timers.mark();
weights = new float[Team.values().length][0][0];
blocked.clear();
@@ -119,6 +119,6 @@ public class Pathfinder {
}
}
Log.info("Elapsed calculation time: {0}", Timers.elapsedNs());
Log.info("Elapsed calculation time: {0}", Timers.elapsed());
}
}