mirror of
https://github.com/funkemunky/KauriV3.git
synced 2026-06-19 13:30:37 +00:00
Fixing reach false positive
This commit is contained in:
@@ -59,15 +59,9 @@ public class EntityLocationHandler {
|
||||
entityLocationMap.values().forEach(eloc -> {
|
||||
if(eloc.one != null) {
|
||||
eloc.one.interpolateLocation();
|
||||
if(streak > 2 && eloc.one.interpolatedLocations.size() > 1) {
|
||||
eloc.one.interpolatedLocations.removeFirst();
|
||||
}
|
||||
}
|
||||
if(eloc.two != null) {
|
||||
eloc.two.interpolateLocation();
|
||||
if(streak > 2 && eloc.two.interpolatedLocations.size() > 1) {
|
||||
eloc.two.interpolatedLocations.removeFirst();
|
||||
}
|
||||
}
|
||||
});
|
||||
|
||||
|
||||
Reference in New Issue
Block a user